news/js
Benjamin Brahmer 840906af56 fix #775 and update js packages
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2020-08-31 09:10:33 +02:00
..
admin fix #775 and update js packages 2020-08-31 09:10:33 +02:00
app Always show the unread articles. 2020-04-23 12:37:24 +02:00
controller fixed active menu item and reload for unread 2020-04-24 18:24:08 +02:00
directive fix search 2019-03-15 09:29:37 +01:00
filter Adjust copyright header 2016-07-23 21:32:42 +02:00
gui New layout fix, scrolling and keyboard shortcuts fixes 2018-08-03 16:25:16 +02:00
plugin version bump 2015-01-26 10:50:37 +01:00
service Cleanup JS and prolong error notification 2019-03-05 11:35:14 +01:00
tests Fix tests 2017-06-10 11:19:07 +02:00
.jshintignore Remove bower, install everything using npm (#197) 2017-06-18 12:19:38 +02:00
.jshintrc Cleanup JS and prolong error notification 2019-03-05 11:35:14 +01:00
README.md Bump versions and remove outdated file (#583) 2019-12-25 07:01:54 +01:00
gulpfile.js Bump versions and remove outdated file (#583) 2019-12-25 07:01:54 +01:00
karma.conf.js Remove bower, install everything using npm (#197) 2017-06-18 12:19:38 +02:00
package-lock.json fix #775 and update js packages 2020-08-31 09:10:33 +02:00
package.json fix #775 and update js packages 2020-08-31 09:10:33 +02:00
protractor.conf.js Adjust copyright header 2016-07-23 21:32:42 +02:00

README.md

JavaScript Development

JavaScript is built and minified using gulp.

Therefore you need to install Node.js 6+ and npm. Then use npm to install gulp-cli:

sudo npm -g install gulp-cli

Then install the local dependencies by running:

npm install

Tasks

The following tasks are available:

  • Build the JavaScript:

      gulp
    
  • Watch for changes and build JavaScript:

      gulp watch
    
  • Run JavaScript unit tests:

      gulp karma
    
  • Watch for changes and run JavaScript unit tests:

      gulp watch-karma