factoriomod-debug 2.0.12 → 2.0.13

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "factoriomod-debug",
3
3
  "displayName": "Factorio Modding Tool Kit",
4
- "version": "2.0.12",
4
+ "version": "2.0.13",
5
5
  "publisher": "justarandomgeek",
6
6
  "description": "Debug Tools for developing Factorio Mods",
7
7
  "author": {
@@ -389,6 +389,24 @@
389
389
  "Run inside extension, communicate directly",
390
390
  "Run in an external process, communicate via stdio"
391
391
  ]
392
+ },
393
+ "factorio.tasks.execArgvOptions": {
394
+ "description": "Options to modify existing `execArgv` when forking",
395
+ "type": "array",
396
+ "default": [],
397
+ "uniqueItems": true,
398
+ "items": {
399
+ "enum": [
400
+ "clear",
401
+ "stripjsflags",
402
+ "stripinspect"
403
+ ]
404
+ }
405
+ },
406
+ "factorio.tasks.execArgvExtras": {
407
+ "description": "Extra options to add to `execArgv` when forking",
408
+ "type": "array",
409
+ "items": { "type": "string" }
392
410
  }
393
411
  }
394
412
  }