@nexrender/cli 1.32.3 → 1.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/bin.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexrender/cli",
3
- "version": "1.32.3",
3
+ "version": "1.33.0",
4
4
  "author": "inlife",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -16,12 +16,12 @@
16
16
  ]
17
17
  },
18
18
  "dependencies": {
19
- "@nexrender/core": "^1.32.3",
19
+ "@nexrender/core": "^1.33.0",
20
20
  "arg": "^4.1.0",
21
21
  "chalk": "^2.4.2"
22
22
  },
23
23
  "publishConfig": {
24
24
  "access": "public"
25
25
  },
26
- "gitHead": "d402c6c0ffb930dba73480b4bb6eb921c7ef1e1c"
26
+ "gitHead": "6f3bdccfa13723b3b43552193871973ab395d428"
27
27
  }
package/src/bin.js CHANGED
@@ -26,6 +26,7 @@ const args = arg({
26
26
  '--force-patch': Boolean,
27
27
  '--debug': Boolean,
28
28
  '--multi-frames': Boolean,
29
+ '--multi-frames-cpu': Number,
29
30
  '--reuse': Boolean,
30
31
 
31
32
  '--max-memory-percent': Number,
@@ -159,6 +160,7 @@ opt('skipRender', '--skip-render');
159
160
  opt('forceCommandLinePatch','--force-patch');
160
161
  opt('debug', '--debug');
161
162
  opt('multiFrames', '--multi-frames');
163
+ opt('multiFramesCPU', '--multi-frames-cpu');
162
164
  opt('reuse', '--reuse');
163
165
  opt('stopOnError', '--stop-on-error');
164
166
  opt('maxMemoryPercent', '--max-memory-percent');