Skip to content

Commit

Permalink
CI run 190 pushed to gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Apr 26, 2024
1 parent ae23a11 commit 2aca24d
Show file tree
Hide file tree
Showing 8 changed files with 82 additions and 86 deletions.
6 changes: 0 additions & 6 deletions demo/trunk/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ module.exports = function (grunt) {
// Project configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
eslint: {
files: ['Gruntfile.js', 'service-worker.js', 'src/*.js']
},
copy: {
dev: {
src: 'index.html',
Expand Down Expand Up @@ -62,11 +59,8 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-eslint');

// Task to run tests
grunt.registerTask('lint', ['eslint']);
grunt.registerTask('test', ['eslint']);
grunt.registerTask('start', ['connect:prod', 'watch']);
grunt.registerTask('dev', ['copy:dev', 'connect:dev', 'watch']);
};
28 changes: 14 additions & 14 deletions demo/trunk/node_modules/.yarn-integrity

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion demo/trunk/node_modules/dwv/dist/dwv.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion demo/trunk/node_modules/dwv/dist/dwv.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion demo/trunk/node_modules/dwv/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions demo/trunk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,19 @@
"url": "git://github.com/ivmartel/dwv-simplistic.git"
},
"dependencies": {
"dwv": "0.32.4"
"dwv": "0.32.6"
},
"devDependencies": {
"eslint": "^8.53.0",
"grunt": "^1.4.0",
"grunt-cli": "^1.4.2",
"grunt-contrib-connect": "^4.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^24.3.0"
"grunt-contrib-watch": "^1.1.0"
},
"scripts": {
"start": "grunt start",
"dev": "grunt dev",
"test": "grunt test --verbose",
"lint": "grunt lint"
"lint": "eslint 'src/**/*.js' '*.js'"
}
}
2 changes: 1 addition & 1 deletion demo/trunk/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dwv-simplistic is not certified for diagnostic use. Released under GNU GPL-3.0 l
- `install`: install dependencies
- `start`: serve at localhost:8080 with live reload
- `dev`: serve a developement version at localhost:8080 with live reload
- `test`: run unit tests
- `lint`: lint js code

## Steps to run the viewer from scratch

Expand Down
Loading

0 comments on commit 2aca24d

Please sign in to comment.