Commit 83a5bee2 by Sam Padgett Committed by GitHub

Merge pull request #169 from benjaminapetersen/bpeterse/npm-run-watch

Add `watch` to package.json
parents 05ff4640 bab237da
......@@ -13,7 +13,8 @@ module.exports = function (grunt) {
'help': 'Task list helper for your Grunt enabled projects.',
'clean': 'Deletes the content of the dist directory.',
'build': 'Builds the project into the dist directory.',
'test': 'Executes the karma testsuite.'
'test': 'Executes the karma testsuite.',
'watch': 'Automatically rebuild /dist whenever /src files change.'
},
groups: {
'Basic project tasks': ['help', 'clean', 'build', 'test']
......
......@@ -43,6 +43,7 @@
"test": "grunt test",
"build": "grunt build",
"deploy": "grunt deploy",
"watch": "grunt watch",
"help": "grunt help"
},
"repository": {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment