From d01dc5a5c7d639992bdb57fba096c57ddac718cf Mon Sep 17 00:00:00 2001 From: Anthony Dresser Date: Thu, 10 Sep 2020 10:18:35 -0700 Subject: [PATCH] increase memory size for valid layers check (#12206) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 25d49a687c..be15d17f12 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "strict-vscode-watch": "node --max_old_space_size=4095 node_modules/typescript/bin/tsc -p src/tsconfig.vscode.json --watch", "strict-initialization-watch": "tsc --watch -p src/tsconfig.json --noEmit --strictPropertyInitialization", "tsec-compile-check": "node_modules/tsec/bin/tsec -p src/tsconfig.json --noEmit", - "valid-layers-check": "node build/lib/layersChecker.js", + "valid-layers-check": "node --max_old_space_size=4095 build/lib/layersChecker.js", "strict-function-types-watch": "tsc --watch -p src/tsconfig.json --noEmit --strictFunctionTypes", "update-distro": "node build/npm/update-distro.js", "web": "node resources/web/code-web.js",