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 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', '').kids) {
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)}`;