@codedrifters/configulator 0.0.310 → 0.0.312

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
@@ -16642,6 +16642,13 @@ var PnpmWorkspace = class _PnpmWorkspace extends Component {
16642
16642
  this.subprojects = options.subprojects ?? [];
16643
16643
  this.defaultCatalog = options.defaultCatalog;
16644
16644
  this.namedCatalogs = options.namedCatalogs;
16645
+ this.confirmModulesPurge = options.confirmModulesPurge;
16646
+ this.strictDepBuilds = options.strictDepBuilds;
16647
+ this.verifyDepsBeforeRun = options.verifyDepsBeforeRun;
16648
+ this.catalogMode = options.catalogMode;
16649
+ this.cleanupUnusedCatalogs = options.cleanupUnusedCatalogs;
16650
+ this.minimumReleaseAgeStrict = options.minimumReleaseAgeStrict;
16651
+ this.minimumReleaseAgeIgnoreMissingTime = options.minimumReleaseAgeIgnoreMissingTime;
16645
16652
  project.addPackageIgnore(this.fileName);
16646
16653
  new YamlFile(this.project, this.fileName, {
16647
16654
  obj: () => {
@@ -16698,6 +16705,27 @@ var PnpmWorkspace = class _PnpmWorkspace extends Component {
16698
16705
  if (this.namedCatalogs && Object.keys(this.namedCatalogs).length > 0) {
16699
16706
  pnpmConfig.namedCatalogs = this.namedCatalogs;
16700
16707
  }
16708
+ if (this.confirmModulesPurge !== void 0) {
16709
+ pnpmConfig.confirmModulesPurge = this.confirmModulesPurge;
16710
+ }
16711
+ if (this.strictDepBuilds !== void 0) {
16712
+ pnpmConfig.strictDepBuilds = this.strictDepBuilds;
16713
+ }
16714
+ if (this.verifyDepsBeforeRun !== void 0) {
16715
+ pnpmConfig.verifyDepsBeforeRun = this.verifyDepsBeforeRun;
16716
+ }
16717
+ if (this.catalogMode !== void 0) {
16718
+ pnpmConfig.catalogMode = this.catalogMode;
16719
+ }
16720
+ if (this.cleanupUnusedCatalogs !== void 0) {
16721
+ pnpmConfig.cleanupUnusedCatalogs = this.cleanupUnusedCatalogs;
16722
+ }
16723
+ if (this.minimumReleaseAgeStrict !== void 0) {
16724
+ pnpmConfig.minimumReleaseAgeStrict = this.minimumReleaseAgeStrict;
16725
+ }
16726
+ if (this.minimumReleaseAgeIgnoreMissingTime !== void 0) {
16727
+ pnpmConfig.minimumReleaseAgeIgnoreMissingTime = this.minimumReleaseAgeIgnoreMissingTime;
16728
+ }
16701
16729
  return {
16702
16730
  ...packages.length > 0 ? { packages } : {},
16703
16731
  ...pnpmConfig ? { ...pnpmConfig } : {}
@@ -27992,7 +28020,7 @@ var VERSION = {
27992
28020
  /**
27993
28021
  * Version of Astro to pin for AstroProject scaffolding.
27994
28022
  */
27995
- ASTRO_VERSION: "6.3.1",
28023
+ ASTRO_VERSION: "6.3.2",
27996
28024
  /**
27997
28025
  * CDK CLI for workflows and command line operations.
27998
28026
  *
@@ -28004,7 +28032,7 @@ var VERSION = {
28004
28032
  *
28005
28033
  * CLI and lib are versioned separately, so this is the lib version.
28006
28034
  */
28007
- AWS_CDK_LIB_VERSION: "2.253.1",
28035
+ AWS_CDK_LIB_VERSION: "2.254.0",
28008
28036
  /**
28009
28037
  * Version of the AWS Constructs library to use.
28010
28038
  */
@@ -28025,7 +28053,7 @@ var VERSION = {
28025
28053
  /**
28026
28054
  * Version of Projen to use.
28027
28055
  */
28028
- PROJEN_VERSION: "0.99.60",
28056
+ PROJEN_VERSION: "0.99.61",
28029
28057
  /**
28030
28058
  * Version of `actions/setup-node` to use in GitHub workflows.
28031
28059
  * Tracks the version projen currently emits (see node_modules/projen/lib/github/workflows.js).