@objectstack/metadata 17.0.0 → 17.1.0
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/CHANGELOG.md +177 -0
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/node.cjs +3 -3
- package/dist/node.cjs.map +1 -1
- package/dist/node.js +3 -3
- package/dist/node.js.map +1 -1
- package/package.json +10 -10
package/dist/node.cjs
CHANGED
|
@@ -4795,12 +4795,12 @@ var MetadataPlugin = class {
|
|
|
4795
4795
|
this.repository = void 0;
|
|
4796
4796
|
};
|
|
4797
4797
|
this.options = {
|
|
4798
|
-
|
|
4799
|
-
|
|
4798
|
+
...options,
|
|
4799
|
+
watch: options.watch ?? false
|
|
4800
4800
|
};
|
|
4801
4801
|
const rootDir = this.options.rootDir || process.cwd();
|
|
4802
4802
|
const bootstrapMode = this.options.config?.bootstrap ?? "eager";
|
|
4803
|
-
const effectiveWatch = bootstrapMode === "artifact-only" ? false : this.options.watch ??
|
|
4803
|
+
const effectiveWatch = bootstrapMode === "artifact-only" ? false : this.options.watch ?? false;
|
|
4804
4804
|
this.manager = new NodeMetadataManager({
|
|
4805
4805
|
rootDir,
|
|
4806
4806
|
watch: effectiveWatch,
|