@codedrifters/configulator 0.0.100 → 0.0.102

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/lib/index.mjs CHANGED
@@ -1007,10 +1007,14 @@ var TypeScriptProject = class extends typescript.TypeScriptProject {
1007
1007
  } : {}
1008
1008
  },
1009
1009
  /**
1010
- * Only release when the package folder sourcce content changes
1010
+ * Only release when the package folder source content or package.json
1011
+ * (version, dependencies) changes.
1011
1012
  */
1012
1013
  releaseTrigger: ReleaseTrigger.continuous({
1013
- paths: [`${userOptions.outdir}/src/**`]
1014
+ paths: [
1015
+ `${userOptions.outdir}/src/**`,
1016
+ `${userOptions.outdir}/package.json`
1017
+ ]
1014
1018
  })
1015
1019
  };
1016
1020
  const options = merge(defaultOptions, userOptions);
@@ -1375,7 +1379,7 @@ var MonorepoProject = class extends TypeScriptAppProject {
1375
1379
  );
1376
1380
  this.gitignore?.addPatterns(".DS_Store");
1377
1381
  this.addDevDeps("constructs@catalog:");
1378
- if (options.upgradeConfigulatorTask !== false) {
1382
+ if (options.upgradeConfigulatorTask === true) {
1379
1383
  this.upgradeConfigulatorTask = new UpgradeDependencies(
1380
1384
  this,
1381
1385
  merge2(