Skip to content

Commit 63b0936

Browse files
authoredJan 17, 2025
chore(toolkit): synth action with tests (aws#32971)
### Issue Closes aws#32940 ### Description of changes Define the API for the synth action. Includes DX improvements for some other APIs. ### Describe any new or updated permissions being added n/a ### Description of how you validated changes These are the tests! ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 2afdf25 commit 63b0936

Some content is hidden

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

42 files changed

+1989
-211
lines changed
 

‎aws-cdk.code-workspace

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"name": "aws-custom-resource-sdk-adapter",
3232
"rootPath": "packages/@aws-cdk/aws-custom-resource-sdk-adapter"
3333
},
34+
{ "name": "toolkit", "rootPath": "packages/@aws-cdk/toolkit" },
3435
{ "name": "user-input-gen", "rootPath": "tools/@aws-cdk/user-input-gen" }
3536
]
3637
},

‎packages/@aws-cdk/toolkit/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ build-info.json
2626
lib/**/*.wasm
2727
lib/**/*.yaml
2828

29+
# Include test resources
30+
!test/_fixtures/**/app.js
31+
!test/_fixtures/**/cdk.out
32+
2933
# Include config files
3034
!.eslintrc.js
3135
!jest.config.js

0 commit comments

Comments
 (0)