Unbreak npm start when running on Windows

pull/1/head
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\""
}
}

View File

@ -18,7 +18,7 @@
"build:css": "catw 'skins/base/css/**/*.css' -o bundle.css -c uglifycss --no-watch",
"start:css": "catw 'skins/base/css/**/*.css' -o bundle.css -v",
"build": "npm run build:js && npm run build:css",
"start": "parallelshell 'npm run start:js' 'npm run start:css'",
"start": "parallelshell \"npm run start:js\" \"npm run start:css\"",
"prepublish": "npm run build"
},
"dependencies": {
@ -33,7 +33,7 @@
},
"devDependencies": {
"catw": "^1.0.1",
"parallelshell": "^1.1.1",
"parallelshell": "^1.2.0",
"react-tools": "^0.13.3",
"uglifycss": "0.0.15"
}