Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ const cdkAssets = configureProject(
description: 'CDK Asset Publishing Tool',
srcdir: 'lib',
deps: [
cloudAssemblySchema,
cloudAssemblySchema.customizeReference({ versionType: 'exact' }),
cxApi,
'archiver',
'glob',
Expand Down Expand Up @@ -722,8 +722,8 @@ const cli = configureProject(
'xml-js',
],
deps: [
cloudAssemblySchema,
cloudFormationDiff,
cloudAssemblySchema.customizeReference({ versionType: 'exact' }),
cloudFormationDiff.customizeReference({ versionType: 'exact' }),
cxApi,
'@aws-cdk/region-info',
'archiver',
Expand Down Expand Up @@ -962,7 +962,7 @@ const cliLib = configureProject(
entrypoint: 'lib/main.js', // Bundled entrypoint
description: 'AWS CDK Programmatic CLI library',
srcdir: 'lib',
devDeps: ['aws-cdk-lib', cli, 'constructs'],
devDeps: ['aws-cdk-lib', cli.customizeReference({ versionType: 'exact' }), 'constructs'],
disableTsconfig: true,
nextVersionCommand: `tsx ../../../projenrc/next-version.ts copyVersion:../../../${cliPackageJson} append:-alpha.0`,
releasableCommits: transitiveToolkitPackages('@aws-cdk/cli-lib-alpha'),
Expand Down Expand Up @@ -1060,6 +1060,8 @@ const toolkitLib = configureProject(
srcdir: 'lib',
deps: [
cloudAssemblySchema,
// Purposely a ^ dependency so that clients selecting old toolkit library
// versions still might get upgrades to this dependency.
cloudFormationDiff,
cxApi,
'@aws-cdk/region-info',
Expand Down Expand Up @@ -1093,6 +1095,7 @@ const toolkitLib = configureProject(
'@smithy/util-waiter',
'archiver',
'camelcase@^6', // Non-ESM
// Purposely a ^ dependency so that clients get upgrades to this library.
cdkAssets,
'cdk-from-cfn',
'chalk@^4',
Expand Down Expand Up @@ -1305,7 +1308,7 @@ const cdkAliasPackage = configureProject(
name: 'cdk',
description: 'AWS CDK Toolkit',
srcdir: 'lib',
deps: [cli],
deps: [cli.customizeReference({ versionType: 'exact' })],
nextVersionCommand: `tsx ../../projenrc/next-version.ts copyVersion:../../${cliPackageJson}`,
releasableCommits: transitiveToolkitPackages('cdk'),
}),
Expand Down
2 changes: 1 addition & 1 deletion package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/@aws-cdk/cdk-cli-wrapper/.projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/@aws-cdk/cli-lib-alpha/.projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/@aws-cdk/cli-plugin-contract/.projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/@aws-cdk/cloud-assembly-schema/.projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/@aws-cdk/cloudformation-diff/.projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions packages/@aws-cdk/integ-runner/lib/cli.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
export declare function parseCliArgs(args?: string[]): {
tests: string[] | undefined;
app: (string | undefined);
testRegex: string[] | undefined;
testRegions: string[];
originalRegions: string[] | undefined;
profiles: string[] | undefined;
runUpdateOnFailed: boolean;
fromFile: string | undefined;
exclude: boolean;
maxWorkers: number;
list: boolean;
directory: string;
inspectFailures: boolean;
verbosity: number;
verbose: boolean;
clean: boolean;
force: boolean;
dryRun: boolean;
disableUpdateWorkflow: boolean;
language: string[] | undefined;
watch: boolean;
};
export declare function main(args: string[]): Promise<void>;
export declare function cli(args?: string[]): void;
Loading