@codedrifters/configulator 0.0.109 → 0.0.111
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 +3 -3
- package/lib/index.d.ts +3 -3
- package/lib/index.js +6 -4
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +6 -4
- package/lib/index.mjs.map +1 -1
- package/package.json +2 -2
package/lib/index.mjs
CHANGED
|
@@ -441,7 +441,9 @@ var AwsDeploymentConfig = class _AwsDeploymentConfig extends Component3 {
|
|
|
441
441
|
this.project.tasks.tryFind("synth:silent")?.reset(`rm -rf ${this.cdkOut}`);
|
|
442
442
|
this.project.tasks.tryFind("synth:silent")?.exec(`cdk synth -q --output ${this.cdkOut}`, { env: this.env });
|
|
443
443
|
};
|
|
444
|
-
this.env = {
|
|
444
|
+
this.env = {
|
|
445
|
+
GIT_BRANCH_NAME: "${GIT_BRANCH_NAME:-$(git branch --show-current)}"
|
|
446
|
+
};
|
|
445
447
|
this.projectPath = relative(project.root.outdir, project.outdir);
|
|
446
448
|
this.rootPath = relative(project.outdir, project.root.outdir);
|
|
447
449
|
this.rootCdkOut = join("dist", this.projectPath, "cdk.out");
|
|
@@ -750,13 +752,13 @@ var VERSION = {
|
|
|
750
752
|
*
|
|
751
753
|
* CLI and lib are versioned separately, so this is the CLI version.
|
|
752
754
|
*/
|
|
753
|
-
AWS_CDK_CLI_VERSION: "2.
|
|
755
|
+
AWS_CDK_CLI_VERSION: "2.1107.0",
|
|
754
756
|
/**
|
|
755
757
|
* CDK Version to use for construct projects.
|
|
756
758
|
*
|
|
757
759
|
* CLI and lib are versioned separately, so this is the lib version.
|
|
758
760
|
*/
|
|
759
|
-
AWS_CDK_LIB_VERSION: "2.
|
|
761
|
+
AWS_CDK_LIB_VERSION: "2.240.0",
|
|
760
762
|
/**
|
|
761
763
|
* Version of the AWS Constructs library to use.
|
|
762
764
|
*/
|
|
@@ -768,7 +770,7 @@ var VERSION = {
|
|
|
768
770
|
/**
|
|
769
771
|
* Version of PNPM to use in workflows at github actions.
|
|
770
772
|
*/
|
|
771
|
-
PNPM_VERSION: "10.30.
|
|
773
|
+
PNPM_VERSION: "10.30.2",
|
|
772
774
|
/**
|
|
773
775
|
* Version of Projen to use.
|
|
774
776
|
*/
|