From e3e25f973f4fc1dae939f7fccedc274b06e72ff7 Mon Sep 17 00:00:00 2001 From: Kaizen Conroy <36202692+kaizencc@users.noreply.github.com> Date: Mon, 11 Sep 2023 11:09:48 -0400 Subject: [PATCH] fix(synthetics): include auto-delete-underlying-resources in package (#27096) The source code in `custom-resource-handlers` was not included in the `npm pack` and thus unavailable to customers. This PR includes it. Tested by running `npm pack` and confirming its existence and also testing it the resulting package on a local cdk app. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/@aws-cdk/aws-synthetics-alpha/.npmignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/@aws-cdk/aws-synthetics-alpha/.npmignore b/packages/@aws-cdk/aws-synthetics-alpha/.npmignore index 35021099d0a89..0d049da0e16bc 100644 --- a/packages/@aws-cdk/aws-synthetics-alpha/.npmignore +++ b/packages/@aws-cdk/aws-synthetics-alpha/.npmignore @@ -21,9 +21,13 @@ tsconfig.json .eslintrc.js jest.config.js + # exclude cdk artifacts **/cdk.out junit.xml test/ !*.lit.ts **/*.snapshot + +# include custom-resource-handlers +!custom-resource-handlers/*