Is it possible to automate the installation of the developer version of NWJS from package.json, similar to when I run npm install?
For example, if I type npm i nw --nwjs_build_type=sdk
I attempted to set an environment variable in my package.json like this:
"scripts": {
"preinstall": "set NWJS_BUILD_TYPE=sdk"}
However, it was not successful. Any suggestions?