@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/dist/node.cjs CHANGED
@@ -4795,12 +4795,12 @@ var MetadataPlugin = class {
4795
4795
  this.repository = void 0;
4796
4796
  };
4797
4797
  this.options = {
4798
- watch: true,
4799
- ...options
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 ?? true;
4803
+ const effectiveWatch = bootstrapMode === "artifact-only" ? false : this.options.watch ?? false;
4804
4804
  this.manager = new NodeMetadataManager({
4805
4805
  rootDir,
4806
4806
  watch: effectiveWatch,