When running npm scripts, I encountered an issue where the first command successfully starts a node server but prevents the execution of the second command. How can I ensure that both commands are executed successfully?
package.json
"scripts": {
"dev": "nodemon ./bin/www & gulp dev"
}
The 'nodemon ./bin/www' command starts a node server but 'gulp dev' does not execute.