Skip to content

Commit

Permalink
feat(app generator): replace 'test' entry in 'scripts' section with o…
Browse files Browse the repository at this point in the history
…ne that'll run `grunt test`
  • Loading branch information
cueedee committed Apr 14, 2015
1 parent 7a911c5 commit 91318de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/app/templates/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"private": true,
"scripts": {
"prepublish": "command -v grunt > /dev/null || { echo >&2 'It appears that \"grunt\" is not installed. Consider running \"npm install grunt --save-dev\" first.'; exit ; } && grunt",
"test": "echo \"Error: no test specified\" && exit 1"
"test": "command -v grunt > /dev/null || { echo >&2 'It appears that \"grunt\" is not installed. Consider running \"npm install grunt --save-dev\" first.'; exit ; } && grunt test"
},
"version": "0.1.0"
}

0 comments on commit 91318de

Please sign in to comment.