@codedrifters/configulator 0.0.453 → 0.0.454

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.d.mts CHANGED
@@ -12048,11 +12048,11 @@ interface PnpmWorkspaceOptions {
12048
12048
  /**
12049
12049
  * Named catalogs of reusable dependency version ranges.
12050
12050
  *
12051
- * Multiple named catalogs with arbitrarily chosen names can be configured under the namedCatalogs key.
12051
+ * Multiple named catalogs with arbitrarily chosen names can be configured under the `catalogs` key.
12052
12052
  *
12053
12053
  * Example:
12054
12054
  * ```yaml
12055
- * namedCatalogs:
12055
+ * catalogs:
12056
12056
  * frontend:
12057
12057
  * react: ^18.0.0
12058
12058
  * typescript: ^5.0.0
@@ -12281,7 +12281,7 @@ declare class PnpmWorkspace extends Component {
12281
12281
  /**
12282
12282
  * Named catalogs of reusable dependency version ranges.
12283
12283
  *
12284
- * Multiple named catalogs with arbitrarily chosen names can be configured under the namedCatalogs key.
12284
+ * Multiple named catalogs with arbitrarily chosen names can be configured under the `catalogs` key.
12285
12285
  *
12286
12286
  * See: https://pnpm.io/catalogs
12287
12287
  */
package/lib/index.d.ts CHANGED
@@ -12097,11 +12097,11 @@ interface PnpmWorkspaceOptions {
12097
12097
  /**
12098
12098
  * Named catalogs of reusable dependency version ranges.
12099
12099
  *
12100
- * Multiple named catalogs with arbitrarily chosen names can be configured under the namedCatalogs key.
12100
+ * Multiple named catalogs with arbitrarily chosen names can be configured under the `catalogs` key.
12101
12101
  *
12102
12102
  * Example:
12103
12103
  * ```yaml
12104
- * namedCatalogs:
12104
+ * catalogs:
12105
12105
  * frontend:
12106
12106
  * react: ^18.0.0
12107
12107
  * typescript: ^5.0.0
@@ -12330,7 +12330,7 @@ declare class PnpmWorkspace extends Component {
12330
12330
  /**
12331
12331
  * Named catalogs of reusable dependency version ranges.
12332
12332
  *
12333
- * Multiple named catalogs with arbitrarily chosen names can be configured under the namedCatalogs key.
12333
+ * Multiple named catalogs with arbitrarily chosen names can be configured under the `catalogs` key.
12334
12334
  *
12335
12335
  * See: https://pnpm.io/catalogs
12336
12336
  */
package/lib/index.js CHANGED
@@ -21515,7 +21515,7 @@ var PnpmWorkspace = class _PnpmWorkspace extends import_projen.Component {
21515
21515
  pnpmConfig.catalog = this.defaultCatalog;
21516
21516
  }
21517
21517
  if (this.namedCatalogs && Object.keys(this.namedCatalogs).length > 0) {
21518
- pnpmConfig.namedCatalogs = this.namedCatalogs;
21518
+ pnpmConfig.catalogs = this.namedCatalogs;
21519
21519
  }
21520
21520
  if (this.confirmModulesPurge !== void 0) {
21521
21521
  pnpmConfig.confirmModulesPurge = this.confirmModulesPurge;