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] aeedfd0bda
Build(deps): Bump engine.io and socket.io in /js ()
Bumps [engine.io](https://github.com/socketio/engine.io) and [socket.io](https://github.com/socketio/socket.io). These dependencies needed to be updated together.

Updates `engine.io` from 6.2.1 to 6.4.2
- [Release notes](https://github.com/socketio/engine.io/releases)
- [Changelog](https://github.com/socketio/engine.io/blob/main/CHANGELOG.md)
- [Commits](https://github.com/socketio/engine.io/compare/6.2.1...6.4.2)

Updates `socket.io` from 4.5.1 to 4.6.1
- [Release notes](https://github.com/socketio/socket.io/releases)
- [Changelog](https://github.com/socketio/socket.io/blob/main/CHANGELOG.md)
- [Commits](https://github.com/socketio/socket.io/compare/4.5.1...4.6.1)

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

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-05-04 09:04:09 +02: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 audio player floating when scrolling () () 2023-04-18 12:15:57 +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 Make the "open" keyboard shortcut work faster 2023-01-29 19:14:30 +01: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 Build(deps): Bump engine.io and socket.io in /js () 2023-05-04 09:04:09 +02:00
package.json Build(deps-dev): Bump karma-chrome-launcher from 3.1.1 to 3.2.0 in /js 2023-04-23 11:44:35 +02: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