@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.js
CHANGED
|
@@ -4770,12 +4770,12 @@ var MetadataPlugin = class {
|
|
|
4770
4770
|
this.repository = void 0;
|
|
4771
4771
|
};
|
|
4772
4772
|
this.options = {
|
|
4773
|
-
|
|
4774
|
-
|
|
4773
|
+
...options,
|
|
4774
|
+
watch: options.watch ?? false
|
|
4775
4775
|
};
|
|
4776
4776
|
const rootDir = this.options.rootDir || process.cwd();
|
|
4777
4777
|
const bootstrapMode = this.options.config?.bootstrap ?? "eager";
|
|
4778
|
-
const effectiveWatch = bootstrapMode === "artifact-only" ? false : this.options.watch ??
|
|
4778
|
+
const effectiveWatch = bootstrapMode === "artifact-only" ? false : this.options.watch ?? false;
|
|
4779
4779
|
this.manager = new NodeMetadataManager({
|
|
4780
4780
|
rootDir,
|
|
4781
4781
|
watch: effectiveWatch,
|