nextcloud-notes/js
korelstar 598cfaee0e improved error handling 2018-09-15 12:22:09 +02:00
..
app improved error handling 2018-09-15 12:22:09 +02:00
config fix REST base url 2016-04-04 17:45:51 +02:00
public improved error handling 2018-09-15 12:22:09 +02:00
tests Simple search functionality (#28) 2016-12-11 23:00:31 +01:00
vendor remove lodash (use shipped underscore instead) 2018-08-20 21:26:46 +02:00
.bowerrc remove lodash (use shipped underscore instead) 2018-08-20 21:26:46 +02:00
.gitignore remove and ignore test files from 3rd-party libs 2018-08-20 21:26:46 +02:00
.jshintrc first gulp build 2015-07-29 15:46:37 +02:00
README.md first gulp build 2015-07-29 15:46:37 +02:00
bower.json update/remove obsolete JS dependencies 2018-08-18 10:02:44 +02:00
gulpfile.js switch editor from mdedit to simplemde 2017-04-10 19:04:44 +02:00
karma.conf.js switch editor from mdedit to simplemde 2017-04-10 19:04:44 +02:00
package.json ownCloud -> nextcloud 2016-12-29 10:51:10 -05:00

README.md

Building JavaScript and CSS

To build JavaScript and CSS first install Gulp and install the required modules via npm:

sudo npm install -g gulp
npm install

To simply build everything run:

gulp

You can also run it in watch mode to rebuild when files change:

gulp watch

Tests

Run all tests:

gulp test-all

Run JavaScript tests:

gulp test

in watch mode:

gulp watch-test

Run PHP unit tests:

gulp test-php

in watch mode:

gulp watch-test-php

Run PHP integration tests:

gulp test-php-integration