Skip to content

Commit

Permalink
text: increase memory for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
scissorsneedfoodtoo committed Dec 15, 2024
1 parent 1dd4be2 commit 2c7ac23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
"cypress:watch": "npm run cypress -- open",
"dev": "npm run develop",
"predevelop": "npm run clean",
"develop": "cross-env ELEVENTY_ENV=dev NODE_OPTIONS=--max-old-space-size=8192 eleventy --serve",
"develop": "cross-env ELEVENTY_ENV=dev NODE_OPTIONS=--max-old-space-size=10240 eleventy --serve",
"predevelop:ci": "npm run clean",
"develop:ci": "cross-env ELEVENTY_ENV=ci NODE_OPTIONS=--max-old-space-size=8192 eleventy --serve",
"develop:ci": "cross-env ELEVENTY_ENV=ci NODE_OPTIONS=--max-old-space-size=10240 eleventy --serve",
"prebuild": "npm run clean",
"build": "cross-env ELEVENTY_ENV=prod NODE_OPTIONS=--max-old-space-size=8192 eleventy",
"build": "cross-env ELEVENTY_ENV=prod NODE_OPTIONS=--max-old-space-size=10240 eleventy",
"build:ci": "cross-env ELEVENTY_ENV=ci eleventy",
"postbuild": "node ./config/i18n/generate-serve-config.js",
"test": "cross-env ELEVENTY_ENV=ci NODE_OPTIONS=--experimental-vm-modules jest",
Expand Down

0 comments on commit 2c7ac23

Please sign in to comment.