Add grunt watch task

This commit is contained in:
Tankred Hase 2016-02-08 14:23:50 +07:00
parent c7a6a88098
commit 33d8d0fd11
2 changed files with 14 additions and 1 deletions

View File

@ -222,7 +222,18 @@ module.exports = function(grunt) {
statusCheckAttempts: 200
}
},
}
},
watch: {
src: {
files: ['src/**/*.js'],
tasks: ['browserify:openpgp']
},
test: {
files: ['test/*.js', 'test/crypto/**/*.js', 'test/general/**/*.js', 'test/worker/**/*.js'],
tasks: ['browserify:unittests']
}
},
});
// Load the plugin(s)
@ -239,6 +250,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-saucelabs');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('set_version', function() {
if (!version) {

View File

@ -44,6 +44,7 @@
"grunt-contrib-copy": "~0.8.0",
"grunt-contrib-jshint": "~0.12.0",
"grunt-contrib-uglify": "~0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-jsbeautifier": "~0.2.10",
"grunt-jscs": "^2.7.0",
"grunt-jsdoc": "~1.1.0",