@codedrifters/configulator 0.0.91 → 0.0.93
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 +2 -2
- package/lib/index.d.ts +2 -2
- package/lib/index.js +5 -5
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +5 -5
- package/lib/index.mjs.map +1 -1
- package/package.json +8 -8
package/lib/index.mjs
CHANGED
|
@@ -651,7 +651,7 @@ var VERSION = {
|
|
|
651
651
|
*
|
|
652
652
|
* CLI and lib are versioned separately, so this is the CLI version.
|
|
653
653
|
*/
|
|
654
|
-
AWS_CDK_CLI_VERSION: "2.
|
|
654
|
+
AWS_CDK_CLI_VERSION: "2.1105.0",
|
|
655
655
|
/**
|
|
656
656
|
* CDK Version to use for construct projects.
|
|
657
657
|
*
|
|
@@ -673,7 +673,7 @@ var VERSION = {
|
|
|
673
673
|
/**
|
|
674
674
|
* Version of Projen to use.
|
|
675
675
|
*/
|
|
676
|
-
PROJEN_VERSION: "0.99.
|
|
676
|
+
PROJEN_VERSION: "0.99.11",
|
|
677
677
|
/**
|
|
678
678
|
* What version of the turborepo library should we use?
|
|
679
679
|
*/
|
|
@@ -1555,10 +1555,10 @@ var AwsDeployWorkflow = class _AwsDeployWorkflow extends Component10 {
|
|
|
1555
1555
|
const branchFilterCondition = this.buildBranchFilterCondition(
|
|
1556
1556
|
target.branches
|
|
1557
1557
|
);
|
|
1558
|
-
const jobCondition = branchFilterCondition ? [
|
|
1559
|
-
"
|
|
1558
|
+
const jobCondition = branchFilterCondition ? "${{ " + [
|
|
1559
|
+
"!needs.build.outputs.self_mutation_happened",
|
|
1560
1560
|
`(${branchFilterCondition})`
|
|
1561
|
-
].join(" && ") : "${{ !needs.build.outputs.self_mutation_happened }}";
|
|
1561
|
+
].join(" && ") + " }}" : "${{ !needs.build.outputs.self_mutation_happened }}";
|
|
1562
1562
|
this.buildWorkflow.addPostBuildJob(deployJobName, {
|
|
1563
1563
|
name: `Deploy ${this.project.name} ${target.awsStageType}/${target.deploymentTargetRole}/${target.account}/${target.region}`,
|
|
1564
1564
|
needs: [
|