news/js
Marco Nassabain b0b08326a8 🩹 Fix rebase issues
Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
2021-04-08 23:17:31 +02:00
..
admin Fix UpdateInteval not being saved to config 2020-09-02 08:31:10 +02:00
app 🎨 Adapt front-end to match new implementation 2021-04-08 23:17:31 +02:00
controller 🩹 Fix rebase issues 2021-04-08 23:17:31 +02:00
directive Add directive ClickOutside for hide dropdown 2021-04-08 23:17:31 +02:00
filter
gui
plugin
service 🧹 Cleanup ShareController & ShareResource 2021-04-08 23:17:31 +02:00
tests 🎨 Adapt front-end to match new implementation 2021-04-08 23:17:31 +02:00
.jshintignore
.jshintrc
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 switch to actions for frontend tests and remove travis 2020-12-09 19:53:35 +01:00
package-lock.json remove @nextcloud/router dependecy 2021-04-08 23:17:31 +02:00
package.json remove @nextcloud/router dependecy 2021-04-08 23:17:31 +02:00
protractor.conf.js

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