Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cloudformation-diff): use awscdk-service-spec as data source #27813

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
include db in aws-cdk
  • Loading branch information
mrgrain committed Nov 6, 2023
commit 0398ee8a5ab4490f36aebee595bbdf737776f7f7
1 change: 1 addition & 0 deletions packages/aws-cdk/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@ test/integ/cli/*.d.ts
junit.xml

lib/**/*.wasm
db.json.gz
5 changes: 3 additions & 2 deletions packages/aws-cdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
},
"cdk-build": {
"post": [
"cp ../../node_modules/cdk-from-cfn/index_bg.wasm ./lib/"
"cp ../../node_modules/cdk-from-cfn/index_bg.wasm ./lib/",
"cp ../../node_modules/@aws-cdk/aws-service-spec/db.json.gz ./"
]
},
"cdk-package": {
Expand All @@ -47,7 +48,7 @@
"0BSD",
"MIT OR Apache-2.0"
],
"dontAttribute": "^@aws-cdk/|^cdk-assets$|^cdk-cli-wrapper$",
"dontAttribute": "^@aws-cdk/|^@cdklabs/|^cdk-assets$|^cdk-cli-wrapper$",
"test": "bin/cdk --version",
"entryPoints": [
"lib/index.js"
Expand Down
Loading