@codedrifters/configulator 0.0.101 → 0.0.103

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
@@ -382,7 +382,7 @@ declare const VERSION: {
382
382
  /**
383
383
  * Version of the AWS Constructs library to use.
384
384
  */
385
- readonly AWS_CONSTRUCTS_VERSION: "10.4.5";
385
+ readonly AWS_CONSTRUCTS_VERSION: "10.5.0";
386
386
  /**
387
387
  * Version of Node.js to use in CI workflows at github actions.
388
388
  */
@@ -390,7 +390,7 @@ declare const VERSION: {
390
390
  /**
391
391
  * Version of PNPM to use in workflows at github actions.
392
392
  */
393
- readonly PNPM_VERSION: "10.29.3";
393
+ readonly PNPM_VERSION: "10.30.0";
394
394
  /**
395
395
  * Version of Projen to use.
396
396
  */
package/lib/index.d.ts CHANGED
@@ -431,7 +431,7 @@ declare const VERSION: {
431
431
  /**
432
432
  * Version of the AWS Constructs library to use.
433
433
  */
434
- readonly AWS_CONSTRUCTS_VERSION: "10.4.5";
434
+ readonly AWS_CONSTRUCTS_VERSION: "10.5.0";
435
435
  /**
436
436
  * Version of Node.js to use in CI workflows at github actions.
437
437
  */
@@ -439,7 +439,7 @@ declare const VERSION: {
439
439
  /**
440
440
  * Version of PNPM to use in workflows at github actions.
441
441
  */
442
- readonly PNPM_VERSION: "10.29.3";
442
+ readonly PNPM_VERSION: "10.30.0";
443
443
  /**
444
444
  * Version of Projen to use.
445
445
  */
package/lib/index.js CHANGED
@@ -786,7 +786,7 @@ var VERSION = {
786
786
  /**
787
787
  * Version of the AWS Constructs library to use.
788
788
  */
789
- AWS_CONSTRUCTS_VERSION: "10.4.5",
789
+ AWS_CONSTRUCTS_VERSION: "10.5.0",
790
790
  /**
791
791
  * Version of Node.js to use in CI workflows at github actions.
792
792
  */
@@ -794,7 +794,7 @@ var VERSION = {
794
794
  /**
795
795
  * Version of PNPM to use in workflows at github actions.
796
796
  */
797
- PNPM_VERSION: "10.29.3",
797
+ PNPM_VERSION: "10.30.0",
798
798
  /**
799
799
  * Version of Projen to use.
800
800
  */
@@ -1023,10 +1023,14 @@ var TypeScriptProject = class extends import_projen5.typescript.TypeScriptProjec
1023
1023
  } : {}
1024
1024
  },
1025
1025
  /**
1026
- * Only release when the package folder sourcce content changes
1026
+ * Only release when the package folder source content or package.json
1027
+ * (version, dependencies) changes.
1027
1028
  */
1028
1029
  releaseTrigger: import_release.ReleaseTrigger.continuous({
1029
- paths: [`${userOptions.outdir}/src/**`]
1030
+ paths: [
1031
+ `${userOptions.outdir}/src/**`,
1032
+ `${userOptions.outdir}/package.json`
1033
+ ]
1030
1034
  })
1031
1035
  };
1032
1036
  const options = (0, import_ts_deepmerge.merge)(defaultOptions, userOptions);