Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert ensure-max-old-space now that node 12+ has better default memory ceilings #7677

Merged
merged 3 commits into from Dec 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 1 addition & 3 deletions buildutils/package.json
Expand Up @@ -23,7 +23,6 @@
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"ensure-max-old-space": "./lib/ensure-max-old-space.js",
"get-dependency": "./lib/get-dependency.js",
"remove-dependency": "./lib/remove-dependency.js",
"update-dependency": "./lib/update-dependency.js",
Expand Down Expand Up @@ -55,8 +54,7 @@
"semver": "^6.3.0",
"sort-package-json": "~1.31.0",
"typescript": "~3.7.3",
"webpack": "^4.41.2",
"which": "^2.0.2"
"webpack": "^4.41.2"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
Expand Down
32 changes: 0 additions & 32 deletions buildutils/src/ensure-max-old-space.ts

This file was deleted.

8 changes: 4 additions & 4 deletions dev_mode/package.json
Expand Up @@ -6,10 +6,10 @@
"build": "webpack",
"build:dev": "jlpm run build",
"build:dev:minimize": "jlpm run build:dev",
"build:prod": "ensure-max-old-space webpack --config webpack.prod.config.js",
"build:prod:minimize": "ensure-max-old-space webpack --config webpack.prod.minimize.config.js",
"build:prod:release": "ensure-max-old-space webpack --config webpack.prod.release.config.js",
"build:prod:stats": "ensure-max-old-space webpack --profile --config webpack.prod.minimize.config.js --json > stats.json",
"build:prod": "webpack --config webpack.prod.config.js",
"build:prod:minimize": "webpack --config webpack.prod.minimize.config.js",
"build:prod:release": "webpack --config webpack.prod.release.config.js",
"build:prod:stats": "webpack --profile --config webpack.prod.minimize.config.js --json > stats.json",
"build:stats": "webpack --profile --json > stats.json",
"clean": "rimraf build",
"prepublishOnly": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Expand Up @@ -16126,7 +16126,7 @@ which@1.3.1, which@^1.1.1, which@^1.2.1, which@^1.2.14, which@^1.2.9, which@^1.3
dependencies:
isexe "^2.0.0"

which@^2.0.1, which@^2.0.2:
which@^2.0.1:
version "2.0.2"
resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
Expand Down