added retire.js to build process
-allows security vulnerability check in used npm-dependencies and own scripts -execute with ```grunt retire```
This commit is contained in:
parent
de4efa5d19
commit
7621e1085d
|
@ -134,6 +134,13 @@ module.exports = function(grunt) {
|
||||||
markdown: {
|
markdown: {
|
||||||
files: [ './*.md' ]
|
files: [ './*.md' ]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
retire: {
|
||||||
|
js: ['js/reveal.js', 'lib/js/*.js', 'plugin/**/*.js'],
|
||||||
|
node: ['.'],
|
||||||
|
options: {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -148,6 +155,7 @@ module.exports = function(grunt) {
|
||||||
grunt.loadNpmTasks( 'grunt-contrib-connect' );
|
grunt.loadNpmTasks( 'grunt-contrib-connect' );
|
||||||
grunt.loadNpmTasks( 'grunt-autoprefixer' );
|
grunt.loadNpmTasks( 'grunt-autoprefixer' );
|
||||||
grunt.loadNpmTasks( 'grunt-zip' );
|
grunt.loadNpmTasks( 'grunt-zip' );
|
||||||
|
grunt.loadNpmTasks('grunt-retire');
|
||||||
|
|
||||||
// Default task
|
// Default task
|
||||||
grunt.registerTask( 'default', [ 'css', 'js' ] );
|
grunt.registerTask( 'default', [ 'css', 'js' ] );
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
"grunt-sass": "~1.1.0-beta",
|
"grunt-sass": "~1.1.0-beta",
|
||||||
"grunt-contrib-connect": "~0.11.2",
|
"grunt-contrib-connect": "~0.11.2",
|
||||||
"grunt-autoprefixer": "~3.0.3",
|
"grunt-autoprefixer": "~3.0.3",
|
||||||
|
"grunt-retire": "~0.3.10",
|
||||||
"grunt-zip": "~0.17.1",
|
"grunt-zip": "~0.17.1",
|
||||||
"grunt": "~0.4.5",
|
"grunt": "~0.4.5",
|
||||||
"node-sass": "~3.3.3"
|
"node-sass": "~3.3.3"
|
||||||
|
|
Loading…
Reference in New Issue