@firestartr/cli 0.1.4 → 0.1.6

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 +2 -1
  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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/index.js",