Skip to content

Commit

Permalink
use more memory for Node 6 to prevent OOMs
Browse files Browse the repository at this point in the history
  • Loading branch information
thymikee committed Mar 19, 2019
1 parent d946a08 commit 407f7bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -77,7 +77,7 @@
"build-clean": "rm -rf ./packages/*/build ./packages/*/build-es5",
"prebuild": "yarn build:ts",
"build": "node ./scripts/build.js",
"build:ts": "node scripts/buildTs.js",
"build:ts": "node --max-old-space-size=4096 scripts/buildTs.js",
"check-copyright-headers": "node ./scripts/checkCopyrightHeaders.js",
"clean-all": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules && yarn clean-e2e && yarn build-clean",
"clean-e2e": "find ./e2e -not \\( -path ./e2e/presets/js -prune \\) -not \\( -path ./e2e/presets/json -prune \\) -mindepth 2 -type d \\( -name node_modules -prune \\) -exec rm -r '{}' +",
Expand Down

0 comments on commit 407f7bc

Please sign in to comment.