@codedrifters/configulator 0.0.167 → 0.0.168

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
@@ -806,7 +806,7 @@ var jestBundle = {
806
806
  // src/pnpm/pnpm-workspace.ts
807
807
  import { relative } from "path";
808
808
  import { Component, YamlFile } from "projen";
809
- var MIMIMUM_RELEASE_AGE = {
809
+ var MINIMUM_RELEASE_AGE = {
810
810
  ZERO_DAYS: 0,
811
811
  ONE_HOUR: 60,
812
812
  SIX_HOURS: 360,
@@ -835,7 +835,7 @@ var PnpmWorkspace = class _PnpmWorkspace extends Component {
835
835
  super(project);
836
836
  project.tryFindObjectFile("package.json")?.addDeletionOverride("pnpm");
837
837
  this.fileName = options.fileName ?? "pnpm-workspace.yaml";
838
- this.minimumReleaseAge = options.minimumReleaseAge ?? MIMIMUM_RELEASE_AGE.ONE_DAY;
838
+ this.minimumReleaseAge = options.minimumReleaseAge ?? MINIMUM_RELEASE_AGE.ONE_DAY;
839
839
  this.minimumReleaseAgeExclude = options.minimumReleaseAgeExclude ? ["@codedrifters/*", ...options.minimumReleaseAgeExclude] : ["@codedrifters/*"];
840
840
  this.onlyBuiltDependencies = options.onlyBuiltDependencies ? options.onlyBuiltDependencies : [];
841
841
  this.ignoredBuiltDependencies = options.ignoredBuiltDependencies ? options.ignoredBuiltDependencies : [];
@@ -882,6 +882,7 @@ var PnpmWorkspace = class _PnpmWorkspace extends Component {
882
882
  });
883
883
  }
884
884
  };
885
+ var MIMIMUM_RELEASE_AGE = MINIMUM_RELEASE_AGE;
885
886
 
886
887
  // src/agent/bundles/pnpm.ts
887
888
  var pnpmBundle = {
@@ -4004,6 +4005,7 @@ export {
4004
4005
  MCP_TRANSPORT,
4005
4006
  MERGE_METHODS,
4006
4007
  MIMIMUM_RELEASE_AGE,
4008
+ MINIMUM_RELEASE_AGE,
4007
4009
  MonorepoProject,
4008
4010
  PROD_DEPLOY_NAME,
4009
4011
  PnpmWorkspace,