8000 Added a .npmignore (not relying of jsii autogen) by andrewpatto · Pull Request #3 · umccr/steps-s3-copy · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Added a .npmignore (not relying of jsii autogen) #3

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

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 2 additions & 4 deletions packages/steps-s3-copy/.gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
**/*.js
**/*.d.ts

out/**
dist/**

tsconfig.*
.jsii
.npmignore
19 changes: 19 additions & 0 deletions packages/steps-s3-copy/.npmignore
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
3 changes: 0 additions & 3 deletions packages/steps-s3-copy/lambda/can-write-lambda/.gitignore

This file was deleted.

This file was deleted.

3 changes: 0 additions & 3 deletions packages/steps-s3-copy/lambda/thaw-objects-lambda/.gitignore

This file was deleted.

0