Skip to content

Commit

Permalink
chore(development): fix npm start file watching (#3922)
Browse files Browse the repository at this point in the history
A invalid argument (`--w`) was being passed to the babel cli in the grunt task `shell:babel`. This argument has been changed to `--watch` to get the babel cli to watch files for changes as intended.
  • Loading branch information
brandonocasey authored Jan 6, 2017
1 parent 0ce7cd4 commit 02da697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/grunt.js
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ module.exports = function(grunt) {
},
shell: {
babel: {
command: 'npm run babel -- --w',
command: 'npm run babel -- --watch',
options: {
preferLocal: true
}
Expand Down

0 comments on commit 02da697

Please sign in to comment.