I want to run multiple npm scripts synchronous.(one after another) For example here are my npm scripts.I have both bower and npm packages in my project.
{
"scripts": {
"installnpm": "npm i",
"installbower": "bower i",
"rimraf":"rimraf dist"
"lernabootstrap": "lerna bootstrap",
"start":"nodemon myApp.js"
}
}
How can I run multiple scripts both on unix and windows without any error? Scripts also includes npm and bower install commands like you see.Does it matter for this situation?