Skip to content

Commit

Permalink
Make default task not to watch after build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sitin committed Oct 15, 2014
1 parent 90d209a commit a5fe843
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ module.exports = function (grunt) {
grunt.registerTask('test', ['mochacov:test', 'e2e']);
grunt.registerTask('test-ci', [mochaCoverageTask, 'e2e']);
grunt.registerTask('ci', ['compile', 'test-ci', 'clean:sourceMaps']);
grunt.registerTask('default', ['build', 'watch']);
grunt.registerTask('default', ['build']);
grunt.registerTask('serve', ['build', 'watch']);
grunt.registerTask('website', ['gh-pages:docs']);
grunt.registerTask('build', ['compile', 'test', 'document']);
grunt.registerTask('publish', ['build', 'release', 'release-client', 'website']);
Expand Down

0 comments on commit a5fe843

Please sign in to comment.