1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2025-01-04 17:42:46 +01:00
Nextcloud-News/js
dependabot[bot] 582175ef99 Bump socket.io-parser from 4.0.4 to 4.0.5 in /js
Bumps [socket.io-parser](https://github.com/socketio/socket.io-parser) from 4.0.4 to 4.0.5.
- [Release notes](https://github.com/socketio/socket.io-parser/releases)
- [Changelog](https://github.com/socketio/socket.io-parser/blob/main/CHANGELOG.md)
- [Commits](https://github.com/socketio/socket.io-parser/compare/4.0.4...4.0.5)

---
updated-dependencies:
- dependency-name: socket.io-parser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-10 08:20:54 +01:00
..
admin Fix UpdateInteval not being saved to config 2020-09-02 08:31:10 +02:00
app Fix various keyboard navigation issues 2022-10-23 12:48:39 +02:00
controller Fix the highlighted item in reversed order 2022-09-20 14:24:16 +02:00
directive Fix various keyboard navigation issues 2022-10-23 12:48:39 +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 Fix various keyboard navigation issues 2022-10-23 12:48:39 +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 () 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
gulpfile.js Port admin settings to vue () 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 socket.io-parser from 4.0.4 to 4.0.5 in /js 2022-11-10 08:20:54 +01:00
package.json Bump jasmine-core from 4.4.0 to 4.5.0 in /js 2022-11-02 11:26:12 +01:00
protractor.conf.js Adjust copyright header 2016-07-23 21:32:42 +02:00
README.md Bump versions and remove outdated file () 2019-12-25 07:01:54 +01:00

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