Merge pull request #12377 from CaseSolvedUK/develop

fix: Memory limit for watch command
This commit is contained in:
mergify[bot] 2021-02-24 11:52:18 +00:00 committed by GitHub
commit 49931f8d63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@
"scripts": {
"build": "node rollup/build.js",
"production": "FRAPPE_ENV=production node rollup/build.js",
"watch": "node rollup/watch.js",
"watch": "node --max_old_space_size=1280 rollup/watch.js",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},