I have a package.json file that looks like this:
{ "name": "APP", "version": "3.0.0", "private": true, "scripts": { "start": "node app.js", "test": "./test/dbLoad && env db=test test=1 jasmine" } }
When I run the npm test, I get an error:
'.' is not recognized as an internal or external command
I assume this is because node uses windows cmd.exe . The command works great if I predict it with bash . Is it possible to change some configuration parameter in node so that it automatically uses bash?
source share