Unbreak npm start when running on Windows

This commit is contained in:
Kegan Dougal 2015-07-22 08:25:40 +01:00
parent c8f3f5841c
commit 772f987489
2 changed files with 3 additions and 3 deletions

View file

@ -20,6 +20,6 @@
},
"scripts": {
"build": "browserify -t [ envify --NODE_ENV production ] -t reactify index.js | uglifyjs -c -m -o bundle.js",
"start": "parallelshell 'watchify -v -d -t reactify index.js -o bundle.js' 'http-server'"
"start": "parallelshell \"watchify -v -d -t reactify index.js -o bundle.js\" \"http-server\""
}
}