-
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.
Added a .npmignore (not relying of jsii autogen)
Make sure lambda node modules are _not_ kept but TS files are
- Loading branch information
1 parent
531dd98
commit 18eb448
Showing
5 changed files
with
21 additions
and
13 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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
**/*.js | ||
**/*.d.ts | ||
|
||
out/** | ||
dist/** | ||
|
||
tsconfig.* | ||
.jsii | ||
.npmignore |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
# exclude typescript source and config (only in the src folder - don't exclude lambda TS files) | ||
src/** | ||
tsconfig.json | ||
|
||
# excludes node_modules that might exist locally in our lambda (these will be rebuilt by the CDK | ||
# when the packages are used) | ||
lambda/**/node_modules | ||
|
||
# Include javascript files and typescript declarations | ||
!*.js | ||
!*.d.ts | ||
|
||
# Exclude jsii directory that things are _packed_ into | ||
dist | ||
|
||
# Include .jsii and .jsii.gz | ||
!.jsii | ||
!.jsii.gz |
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
packages/steps-s3-copy/lambda/summarise-copy-lambda/.gitignore
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.