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

Changed the reference to the path in gulpfile.js to allow spaces
This commit is contained in:
Dylan
2017-02-27 09:54:13 -06:00
committed by GitHub

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:*',