mam 1.11.118 → 1.11.119
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/node.js +1 -1
- package/node.js.map +1 -1
- package/node.mjs +1 -1
- package/node.test.js +1 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
package/node.js
CHANGED
|
@@ -4794,7 +4794,7 @@ var $;
|
|
|
4794
4794
|
const name = file.name();
|
|
4795
4795
|
const tree = this.$.$mol_tree2_from_string(file.text(), file.path());
|
|
4796
4796
|
let content = '';
|
|
4797
|
-
for (const step of tree.select('build',
|
|
4797
|
+
for (const step of tree.select('build', null).kids) {
|
|
4798
4798
|
const res = this.$.$mol_exec(file.parent().path(), step.text()).stdout.toString().trim();
|
|
4799
4799
|
if (step.type)
|
|
4800
4800
|
content += `let ${step.type} = ${JSON.stringify(res)}`;
|