Reputation: 1312
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
Upvotes: 3
Views: 2351
Reputation: 8044
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
export NODE_OPTIONS="--stack-size=1500"
npm run build
see also the answer about yarn
Upvotes: 5