@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.
- package/build/index.js +2 -1
- 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
|
-
|
|
263625
|
+
if (featureArgs[arg["$arg"]])
|
|
263626
|
+
context[key] = featureArgs[arg["$arg"]];
|
|
263626
263627
|
}
|
|
263627
263628
|
});
|
|
263628
263629
|
context.firestartrConfig = firestartrConfig;
|