In my package.json
I have the following:
...
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w --outDir build",
"lite": "lite-server",
"start": "concurrent \"npm run tsc:w\" \"npm run lite\" "
},
...
and I was wondering how could I start the app using "npm production
" or something similar?
I'd want to prevent browsersync from running: I just tried with multiple users and it was hilarious to see that they were scrolling "as one". This also happens accross different browsers (but not using different tabs).
npm install --save serve
and added the line"serve": "serve",
under "scripts" in package.json. Then I was able to usenpm run serve
. – Acis