@firestartr/cli 0.1.4 → 0.1.5

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/build/index.js +3 -2
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -263622,7 +263622,8 @@ function buildContext(entity, args, firestartrConfig, featureArgs) {
263622
263622
  context[key] = arg["$lit"];
263623
263623
  }
263624
263624
  else if ("$arg" in arg) {
263625
- context[key] = featureArgs[arg["$arg"]];
263625
+ if (featureArgs[arg["$arg"]])
263626
+ context[key] = featureArgs[arg["$arg"]];
263626
263627
  }
263627
263628
  });
263628
263629
  context.firestartrConfig = firestartrConfig;
@@ -267575,7 +267576,7 @@ module.exports = JSON.parse('[[[0,44],"disallowed_STD3_valid"],[[45,46],"valid"]
267575
267576
  /***/ ((module) => {
267576
267577
 
267577
267578
  "use strict";
267578
- module.exports = JSON.parse('{"$schema":"http://json-schema.org/draft-07/schema#","$ref":"#/definitions/root","definitions":{"root":{"type":"object","additionalProperties":false,"properties":{"feature_name":{"type":"string"},"args":{"$ref":"#/definitions/Args"},"files":{"type":"array","items":{"$ref":"#/definitions/File"}},"patches":{"type":"object","patternProperties":{"^.+$":{"type":"array","items":{"$ref":"#/definitions/Patch"}}}}},"required":["args","feature_name","files","patches"],"title":"root"},"Args":{"type":"object","additionalProperties":true,"patternProperties":{"^.+$":{"$ref":"#/definitions/Arg"}},"title":"Args"},"Arg":{"type":"object","additionalProperties":false,"properties":{"$lit":{"type":"string"},"$ref":{"type":"array","items":{"type":"string"}},"$arg":{"type":"string"},"$default":{"type":["string","array"]}}},"File":{"type":"object","additionalProperties":true,"properties":{"src":{"type":"string"},"dest":{"type":"string"},"upgradable":{"type":"boolean"}},"required":["dest","src"],"title":"File"},"Patch":{"type":"object","additionalProperties":false,"properties":{"name":{"type":"string"},"op":{"type":"string"},"path":{"type":"string"},"value":{"type":"string"}},"required":["name","op","path"],"title":"Patch"}}}');
267579
+ module.exports = JSON.parse('{"$schema":"http://json-schema.org/draft-07/schema#","$ref":"#/definitions/root","definitions":{"root":{"type":"object","additionalProperties":false,"properties":{"feature_name":{"type":"string"},"args":{"$ref":"#/definitions/Args"},"files":{"type":"array","items":{"$ref":"#/definitions/File"}},"patches":{"type":"object","patternProperties":{"^.+$":{"type":"array","items":{"$ref":"#/definitions/Patch"}}}}},"required":["args","feature_name","files","patches"],"title":"root"},"Args":{"type":"object","additionalProperties":true,"patternProperties":{"^.+$":{"$ref":"#/definitions/Arg"}},"title":"Args"},"Arg":{"type":"object","additionalProperties":false,"properties":{"$lit":{"type":"string"},"$ref":{"type":"array","items":{"type":"string"}},"$arg":{"type":"string"},"$default":{"type":"string"}}},"File":{"type":"object","additionalProperties":true,"properties":{"src":{"type":"string"},"dest":{"type":"string"},"upgradable":{"type":"boolean"}},"required":["dest","src"],"title":"File"},"Patch":{"type":"object","additionalProperties":false,"properties":{"name":{"type":"string"},"op":{"type":"string"},"path":{"type":"string"},"value":{"type":"string"}},"required":["name","op","path"],"title":"Patch"}}}');
267579
267580
 
267580
267581
  /***/ }),
267581
267582
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/index.js",