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
diff --git a/node_modules/@aws-cdk/aws-s3-deployment/lib/lambda/index.py b/node_modules/@aws-cdk/aws-s3-deployment/lib/lambda/index.py | |
index 3935e31..78c4dc3 100644 | |
--- a/node_modules/@aws-cdk/aws-s3-deployment/lib/lambda/index.py | |
+++ b/node_modules/@aws-cdk/aws-s3-deployment/lib/lambda/index.py | |
@@ -134,7 +134,7 @@ def s3_deploy(s3_source_zips, s3_dest, user_metadata, system_metadata, prune): | |
# sync from "contents" to destination | |
- s3_command = ["s3", "sync"] | |
+ s3_command = ["s3", "sync", "--exclude=*.wasm"] |
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Ark Relay", | |
"program": "${workspaceFolder}/packages/core/bin/ark", | |
"args": ["relay", "--config", "./lib/config/devnet", "--network", "devnet"], | |
"protocol": "inspector", |