1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2025-04-10 13:15:42 +02:00
Nextcloud-News/js
dependabot[bot] b6b7a87b78
Build(deps-dev): Bump jasmine-core from 4.5.0 to 4.6.0 in /js ()
Bumps [jasmine-core](https://github.com/jasmine/jasmine) from 4.5.0 to 4.6.0.
- [Release notes](https://github.com/jasmine/jasmine/releases)
- [Changelog](https://github.com/jasmine/jasmine/blob/main/RELEASE.md)
- [Commits](https://github.com/jasmine/jasmine/compare/v4.5.0...v4.6.0)

---
updated-dependencies:
- dependency-name: jasmine-core
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-16 13:28:05 +00: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 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-dev): Bump jasmine-core from 4.5.0 to 4.6.0 in /js () 2023-03-16 13:28:05 +00:00
package.json Build(deps-dev): Bump jasmine-core from 4.5.0 to 4.6.0 in /js () 2023-03-16 13:28:05 +00: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