From 02da69741acf5ffda6262e9e1a12abf1020fd878 Mon Sep 17 00:00:00 2001 From: Brandon Casey Date: Fri, 6 Jan 2017 12:04:10 -0500 Subject: [PATCH] chore(development): fix `npm start` file watching (#3922) 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. --- build/grunt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/grunt.js b/build/grunt.js index 560c1f5b7d..4020625e65 100644 --- a/build/grunt.js +++ b/build/grunt.js @@ -452,7 +452,7 @@ module.exports = function(grunt) { }, shell: { babel: { - command: 'npm run babel -- --w', + command: 'npm run babel -- --watch', options: { preferLocal: true }