nextcloud-news/js
dependabot[bot] 390efb9806 Bump jshint from 2.13.4 to 2.13.5 in /js
Bumps [jshint](https://github.com/jshint/jshint) from 2.13.4 to 2.13.5.
- [Release notes](https://github.com/jshint/jshint/releases)
- [Changelog](https://github.com/jshint/jshint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jshint/jshint/compare/2.13.4...2.13.5)

---
updated-dependencies:
- dependency-name: jshint
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-26 23:05:11 +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 Revert Add Vue and ng-vue packages 2021-09-02 11:32:44 +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 jshint from 2.13.4 to 2.13.5 in /js 2022-07-26 23:05:11 +02:00
package.json Bump jshint from 2.13.4 to 2.13.5 in /js 2022-07-26 23:05:11 +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