1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2025-08-17 00:31:42 +02:00
Files
Nextcloud-News/js
dependabot[bot] 129caf4ae1 Bump jasmine-core from 4.1.0 to 4.1.1 in /js
Bumps [jasmine-core](https://github.com/jasmine/jasmine) from 4.1.0 to 4.1.1.
- [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.1.0...v4.1.1)

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

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-10 16:59:57 +02:00
..
2021-09-02 11:32:44 +02:00
2015-01-26 10:50:37 +01:00
2021-09-02 11:32:44 +02:00
2016-07-23 21:32:42 +02: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