We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b3b28f commit 071d76eCopy full SHA for 071d76e
.circleci/config.yml
@@ -14,6 +14,10 @@ jobs:
14
working_directory: ~/plotly.js
15
steps:
16
- checkout
17
+ - run:
18
+ name: set heap option before very first node.js call
19
+ command: |
20
+ export NODE_OPTIONS='--max-old-space-size=4096'
21
- run:
22
name: Install dependencies
23
command: |
package.json
@@ -21,7 +21,7 @@
"plotly"
],
"scripts": {
24
- "preprocess": "export NODE_OPTIONS='--max-old-space-size=4096' && node tasks/preprocess.js",
+ "preprocess": "node tasks/preprocess.js",
25
"bundle": "node tasks/bundle.js",
26
"header-dist": "node tasks/header_dist.js",
27
"stats": "node tasks/stats.js",
0 commit comments