As we know, you can run arbitrary commands using npm run
by adding a scripts
hash to your package.json
:
"scripts": {
"build-js": "browserify browser/main.js | uglifyjs -mc > static/bundle.js"
}
Which would then be run with npm run build-js
.
You can also move these commands out into separate scripts, such as bash scripts, as such:
"scripts": {
"build-js": "bin/build.sh"
}
This obviously doesn't natively work on Windows, due to Windows not being capable of running bash scripts. You can install bash ports and such, but I'd love to be able to use some sort of native Windows construct for doing the same thing.
I've tried some other approaches, including using child_process.exec
to run arbitrary commands from within a standard node script file:
"scripts": {
"build-js": "node bin/build.js"
}
But I've noticed child_process
chokes on relatively large/intensive operations, making it implausible to use.
Is there a Windows-specific (or even better, cross-platform) way to move these package.json
npm run
scripts out into separate files? Preferably one that doesn't require bash?