forked from aws/aws-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(s3-deployment): allow multiple Sources for single Deployment (aw…
…s#4105) * feat(s3-deployment): allow multiple Sources for single Deployment In some cases, a user may want to inject other sources into a deployment. For instance, storing JavaScript bundles in one directory and images in another, then combining them in a single bucket for CloudFront distributions. * All sources will be fetched and consolidated into one directory before being zipped as normal prior to deployment BREAKING CHANGE: * Property `source` is now `sources` and is a `Source` array * fixup! feat(s3-deployment): allow multiple Sources for single Deployment * fixup! feat(s3-deployment): allow multiple Sources for single Deployment * fixup! feat(s3-deployment): allow multiple Sources for single Deployment
- Loading branch information
1 parent
57a7ae0
commit 2ce4a87
Showing
13 changed files
with
264 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ coverage/ | |
.LAST_BUILD | ||
*.sw[a-z] | ||
*~ | ||
.idea | ||
|
||
# We don't want tsconfig at the root | ||
/tsconfig.json | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.