Skip to content

Commit

Permalink
Merge branch 'main' into conroy/markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizencc authored Feb 18, 2025
2 parents a4eafc6 + 4d3cdd5 commit 262b4b6
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 6 deletions.
12 changes: 10 additions & 2 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,8 @@ const cli = configureProject(
],
'camelcase@^6', // Non-ESM
cdkAssets,
'cdk-from-cfn',
// A version that is guaranteed to still work on Node 16
'cdk-from-cfn@0.162.1',
'chalk@^4',
'chokidar@^3',
'decamelize@^5', // Non-ESM
Expand Down Expand Up @@ -704,6 +705,13 @@ cli.eslint?.addOverride({
// Do include all .ts files inside init-templates
cli.npmignore?.addPatterns('!lib/init-templates/**/*.ts');

// Exclude other scripts and files from the npm package
cli.npmignore?.addPatterns(
'images/',
'CONTRIBUTING.md',
'generate.sh',
);

cli.gitignore.addPatterns(...ADDITIONAL_CLI_IGNORE_PATTERNS);

// People should not have imported from the `aws-cdk` package, but they have in the past.
Expand Down Expand Up @@ -834,7 +842,7 @@ const cliLib = configureProject(
);

// Do include all .ts files inside init-templates
cli.npmignore?.addPatterns('!lib/init-templates/**/*.ts');
cliLib.npmignore?.addPatterns('!lib/init-templates/**/*.ts');

cliLib.gitignore.addPatterns(
...ADDITIONAL_CLI_IGNORE_PATTERNS,
Expand Down
1 change: 1 addition & 0 deletions packages/@aws-cdk/cli-lib-alpha/.npmignore

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/THIRD_PARTY_LICENSES
Original file line number Diff line number Diff line change
Expand Up @@ -23884,7 +23884,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI

----------------

** cdk-from-cfn@0.189.0 - https://www.npmjs.com/package/cdk-from-cfn/v/0.189.0 | MIT OR Apache-2.0
** cdk-from-cfn@0.162.1 - https://www.npmjs.com/package/cdk-from-cfn/v/0.162.1 | MIT OR Apache-2.0

----------------

Expand Down
3 changes: 3 additions & 0 deletions packages/aws-cdk/.npmignore

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

1 change: 1 addition & 0 deletions packages/aws-cdk/.projen/deps.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/.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/THIRD_PARTY_LICENSES
Original file line number Diff line number Diff line change
Expand Up @@ -23677,7 +23677,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI

----------------

** cdk-from-cfn@0.189.0 - https://www.npmjs.com/package/cdk-from-cfn/v/0.189.0 | MIT OR Apache-2.0
** cdk-from-cfn@0.162.1 - https://www.npmjs.com/package/cdk-from-cfn/v/0.162.1 | MIT OR Apache-2.0

----------------

Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk/package.json

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

5 changes: 5 additions & 0 deletions yarn.lock

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

0 comments on commit 262b4b6

Please sign in to comment.