Skip to content

Commit

Permalink
Fix the grunt dev watch to work more than once
Browse files Browse the repository at this point in the history
  • Loading branch information
samccone committed Apr 18, 2014
1 parent 57100ab commit 06e2359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Expand Up @@ -194,7 +194,7 @@ module.exports = function(grunt) {

grunt.registerTask('test', 'Run the unit tests.', ['lint', 'preprocess:tmp', 'jasmine:marionette', 'clean:tmp']);

grunt.registerTask('dev', 'Auto-lints while writing code.', ['test', 'watch:marionette']);
grunt.registerTask('dev', 'Auto-lints while writing code.', ['lint', 'preprocess:tmp', 'jasmine:marionette', 'watch:marionette']);

grunt.registerTask('build', 'Build all three versions of the library.', ['clean:lib', 'lint', 'preprocess', 'jasmine:marionette', 'concat', 'uglify', 'clean:tmp']);

Expand Down

0 comments on commit 06e2359

Please sign in to comment.