nextcloud-news/js
Carl Schwan 753e88793e
Port admin settings to vue (#1880)
* Port admin settings to vue

Co-authored-by: anoy. <anoymouserver@users.noreply.github.com>
Co-authored-by: Benjamin Brahmer <info@b-brahmer.de>
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-08-30 18:07:25 +02:00
..
admin Fix UpdateInteval not being saved to config 2020-09-02 08:31:10 +02:00
app Revert Add Vue and ng-vue packages 2021-09-02 11:32:44 +02:00
controller update ContentController to fix nextcloud#1324 2022-05-24 10:49:06 +02:00
directive Add directive ClickOutside for hide dropdown 2021-04-08 23:17:31 +02:00
filter Reimplement relative time formatting as a filter, dropping dependency on deprecated moment.js 2021-07-24 14:52:34 +02:00
gui Mark latest post as read when clicking on right arrow shortcut 2021-10-23 12:31:55 +02:00
plugin version bump 2015-01-26 10:50:37 +01:00
service 🧹 Cleanup ShareController & ShareResource 2021-04-08 23:17:31 +02:00
tests Reimplement relative time formatting as a filter, dropping dependency on deprecated moment.js 2021-07-24 14:52:34 +02:00
.jshintignore Remove bower, install everything using npm (#197) 2017-06-18 12:19:38 +02:00
.jshintrc Reimplement relative time formatting as a filter, dropping dependency on deprecated moment.js 2021-07-24 14:52:34 +02:00
README.md Bump versions and remove outdated file (#583) 2019-12-25 07:01:54 +01:00
gulpfile.js Port admin settings to vue (#1880) 2022-08-30 18:07:25 +02:00
karma.conf.js Reimplement relative time formatting as a filter, dropping dependency on deprecated moment.js 2021-07-24 14:52:34 +02:00
package-lock.json Bump jquery from 3.6.0 to 3.6.1 in /js 2022-08-29 14:54:23 +02:00
package.json Bump jquery from 3.6.0 to 3.6.1 in /js 2022-08-29 14:54:23 +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