Skip to content
Closed
Show file tree
Hide file tree
Changes from 35 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
e54ba69
feat(core): add include property specifying particular files for assets
go-to-k Jan 23, 2025
c1c6f94
test name
go-to-k Jan 23, 2025
b112e7f
Merge branch 'main' of https://github.com/go-to-k/aws-cdk into asset-…
go-to-k Jan 23, 2025
15cc85b
snapshots
go-to-k Jan 23, 2025
e0e4ab0
snapshots
go-to-k Jan 23, 2025
63eca52
integ
go-to-k Jan 23, 2025
a571651
README
go-to-k Jan 23, 2025
e212b48
docs
go-to-k Jan 23, 2025
e149646
docs
go-to-k Jan 23, 2025
73867d0
change name
go-to-k Jan 23, 2025
c75d5d9
tweak
go-to-k Jan 24, 2025
5a6d36a
tweak
go-to-k Jan 24, 2025
3ef2d36
new test
go-to-k Jan 24, 2025
6b16e19
change integ test
go-to-k Jan 24, 2025
7128e80
change integ
go-to-k Jan 24, 2025
7e7478b
README
go-to-k Jan 24, 2025
32b2f0e
jsdoc
go-to-k Jan 24, 2025
8eed19e
tweak
go-to-k Jan 24, 2025
3ed34e9
Merge branch 'main' into asset-include
go-to-k Jan 24, 2025
2d040cc
Merge branch 'main' into asset-include
go-to-k Feb 18, 2025
94fa585
Merge branch 'main' into asset-include
go-to-k Feb 18, 2025
fa81af1
use require for minimatch match to other files in aws-cdk-lib
go-to-k Feb 18, 2025
3c5d386
style for tests
go-to-k Feb 18, 2025
f58d1e3
rm comments in integ
go-to-k Feb 18, 2025
f07ceb2
new test
go-to-k Feb 23, 2025
370eacb
Merge branch 'main' of https://github.com/go-to-k/aws-cdk into asset-…
go-to-k Feb 23, 2025
e9b8368
support nagate with include
go-to-k Feb 23, 2025
e425044
error handling
go-to-k Feb 23, 2025
4b9a724
test
go-to-k Feb 23, 2025
3af776c
add tests for copy with symlink
go-to-k Feb 23, 2025
e5ec40c
docs
go-to-k Feb 23, 2025
adb36d6
refactor tests
go-to-k Feb 23, 2025
2ba2f87
add tests
go-to-k Feb 23, 2025
c7a4cad
tests
go-to-k Feb 23, 2025
9479e5e
docs
go-to-k Feb 23, 2025
1669ace
Merge branch 'main' of https://github.com/go-to-k/aws-cdk into asset-…
go-to-k Apr 7, 2025
65bfd6e
Merge branch 'main' into asset-include
go-to-k Apr 23, 2025
75b2790
Merge branch 'main' into asset-include
go-to-k Jun 3, 2025
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
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dummy
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from subdir.sub import get_message


def main(event, context):
return {"message": get_message()}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dummy
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hello, world!
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
def get_message():
with open("subdir/message.txt", "r") as file:
return file.read().strip()

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading