Skip to content

Commit 5cae08a

Browse files
committed
aws-cdk
1 parent 50a8241 commit 5cae08a

File tree

199 files changed

+210
-39808
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+210
-39808
lines changed

.projenrc.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -878,13 +878,10 @@ const cli = configureProject(
878878
// We have many tests here that commonly time out
879879
testTimeout: 60_000,
880880
coveragePathIgnorePatterns: [
881-
// Mostly wrappers around the SDK, which get mocked in unit tests
882-
'<rootDir>/lib/api/aws-auth/sdk.ts',
883-
884881
// Files generated by cli-args-gen
885-
'<rootDir>/lib/parse-command-line-arguments.ts',
886-
'<rootDir>/lib/user-input.ts',
887-
'<rootDir>/lib/convert-to-user-input.ts',
882+
'<rootDir>/lib/cli/parse-command-line-arguments.ts',
883+
'<rootDir>/lib/cli/user-input.ts',
884+
'<rootDir>/lib/cli/convert-to-user-input.ts',
888885
],
889886
testEnvironment: './test/_helpers/jest-bufferedconsole.ts',
890887
setupFilesAfterEnv: ['<rootDir>/test/_helpers/jest-setup-after-env.ts'],

packages/@aws-cdk/cli-lib-alpha/lib/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { SharedOptions, DeployOptions, DestroyOptions, BootstrapOptions, SynthOptions, ListOptions } from './commands';
22
import { StackActivityProgress, HotswapMode } from './commands';
33
import { exec as runCli } from '../../../aws-cdk/lib';
4-
import { createAssembly, prepareContext, prepareDefaultEnvironment } from '../../../aws-cdk/lib/api/cxapp/exec';
4+
import { createAssembly, prepareContext, prepareDefaultEnvironment } from '../../../aws-cdk/lib/cxapp/exec';
55
import { debug } from '../../../aws-cdk/lib/legacy-exports';
66

77
const debugFn = async (msg: string) => void debug(msg);

packages/aws-cdk/.eslintrc.json

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/aws-cdk/.projen/deps.json

Lines changed: 0 additions & 145 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/aws-cdk/.projen/tasks.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/aws-cdk/jest.config.json

Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export * from '../../@aws-cdk/tmp-toolkit-helpers/src/api/private';
2+
export { deployStack } from '../../@aws-cdk/tmp-toolkit-helpers/src/api/deployments/deploy-stack';
3+
export * as cfnApi from '../../@aws-cdk/tmp-toolkit-helpers/src/api/deployments/cfn-api';

packages/aws-cdk/lib/api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from '../../@aws-cdk/tmp-toolkit-helpers/src/api';

packages/aws-cdk/lib/api/aws-auth/account-cache.ts

Lines changed: 0 additions & 116 deletions
This file was deleted.

0 commit comments

Comments
 (0)