ssr-react-router-node-boilerplate icon indicating copy to clipboard operation
ssr-react-router-node-boilerplate copied to clipboard

Single quotes in start:dev should be double quotes to support Windows

Open tysonmatanich opened this issue 6 years ago • 0 comments

In package.json the following needs changed from:

"start:dev": "parallelshell 'npm run build:watch' 'npm run build:watch:client' 'nodemon ./build/server/index.js'",

to:

"start:dev": "parallelshell \"npm run build:watch\" \"npm run build:watch:client\" \"nodemon ./build/server/index.js\"",

https://github.com/darkguy2008/parallelshell/issues/1

tysonmatanich avatar Mar 13 '18 21:03 tysonmatanich