mam 1.11.695 → 1.11.697
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.deps.json +1 -1
- package/node.js +9 -1
- package/node.js.map +1 -1
- package/node.mjs +9 -1
- package/node.test.js +9 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
package/node.mjs
CHANGED
|
@@ -6862,7 +6862,9 @@ var $;
|
|
|
6862
6862
|
};
|
|
6863
6863
|
const tree = this.$.$mol_tree2_from_string(source.text(), source.path());
|
|
6864
6864
|
tree.select('deploy').kids.forEach(deploy => {
|
|
6865
|
-
|
|
6865
|
+
const mod = root.resolve(deploy.text().replace(/^\//, ''));
|
|
6866
|
+
this.modEnsure(mod.path());
|
|
6867
|
+
addFilesRecursive(mod);
|
|
6866
6868
|
});
|
|
6867
6869
|
}
|
|
6868
6870
|
return targets;
|
|
@@ -7078,6 +7080,12 @@ var $;
|
|
|
7078
7080
|
__decorate([
|
|
7079
7081
|
$mol_mem
|
|
7080
7082
|
], $mol_build.prototype, "ensurer", null);
|
|
7083
|
+
__decorate([
|
|
7084
|
+
$mol_mem_key
|
|
7085
|
+
], $mol_build.prototype, "modEnsure", null);
|
|
7086
|
+
__decorate([
|
|
7087
|
+
$mol_mem_key
|
|
7088
|
+
], $mol_build.prototype, "modMeta", null);
|
|
7081
7089
|
__decorate([
|
|
7082
7090
|
$mol_mem_key
|
|
7083
7091
|
], $mol_build.prototype, "graph", null);
|
package/node.test.js
CHANGED
|
@@ -6853,7 +6853,9 @@ var $;
|
|
|
6853
6853
|
};
|
|
6854
6854
|
const tree = this.$.$mol_tree2_from_string(source.text(), source.path());
|
|
6855
6855
|
tree.select('deploy').kids.forEach(deploy => {
|
|
6856
|
-
|
|
6856
|
+
const mod = root.resolve(deploy.text().replace(/^\//, ''));
|
|
6857
|
+
this.modEnsure(mod.path());
|
|
6858
|
+
addFilesRecursive(mod);
|
|
6857
6859
|
});
|
|
6858
6860
|
}
|
|
6859
6861
|
return targets;
|
|
@@ -7069,6 +7071,12 @@ var $;
|
|
|
7069
7071
|
__decorate([
|
|
7070
7072
|
$mol_mem
|
|
7071
7073
|
], $mol_build.prototype, "ensurer", null);
|
|
7074
|
+
__decorate([
|
|
7075
|
+
$mol_mem_key
|
|
7076
|
+
], $mol_build.prototype, "modEnsure", null);
|
|
7077
|
+
__decorate([
|
|
7078
|
+
$mol_mem_key
|
|
7079
|
+
], $mol_build.prototype, "modMeta", null);
|
|
7072
7080
|
__decorate([
|
|
7073
7081
|
$mol_mem_key
|
|
7074
7082
|
], $mol_build.prototype, "graph", null);
|