I want to run npm run build
, but I have to increase stack size like --stack-size=1500
, how can I pass it to npm
?
Normally I'd run node --stack-size=1500 ./some-script.js --some-arg
Let's say I can't edit package.json
This is not duplicate of Sending command line arguments to npm script because answers there describe how to pass arguments to some-script.js
in this case, not to node
I've asked a similar question about yarn. It seems that the most convenient option is to use the NODE_OPTIONS environment variable to pass arguments to NodeJS
see also the answer about yarn