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