Merge pull request #13624 from dgrcode/fix/allow-spaces-local-path

Changed the reference to the path in gulpfile.js to allow spaces
pull/13589/merge
Dylan 2017-02-27 09:54:13 -06:00 committed by GitHub
commit a5f750208a
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ gulp.task('serve', function(cb) {
script: paths.server,
ext: '.jsx .js .json',
ignore: paths.serverIgnore,
exec: path.join(__dirname, 'node_modules/.bin/babel-node'),
exec: path.normalize('node_modules/.bin/babel-node'),
env: {
NODE_ENV: process.env.NODE_ENV || 'development',
DEBUG: process.env.DEBUG || 'fcc:*',