Skip to content

Commit 602a2cf

Browse files
committed
HOTFIX: Ensure lambda code is not built and bundled so it is included in the final artifact pushed to the registry
1 parent c82789b commit 602a2cf

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/header-change-detection/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"options": {
1010
"main": "packages/header-change-detection/index.ts",
1111
"outputPath": "dist/header-change-detection",
12-
"tsConfig": "packages/header-change-detection/tsconfig.app.json"
12+
"tsConfig": "packages/header-change-detection/tsconfig.app.json",
13+
"assets": ["packages/header-change-detection/lib/lambda/**"]
1314
},
1415
"dependsOn": ["merge-gitignore"]
1516
},

packages/header-change-detection/tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"module": "commonjs",
66
"types": ["node"]
77
},
8-
"exclude": ["./jest.config.ts"],
8+
"exclude": ["./jest.config.ts", "lib/lambda/**/*.ts"],
99
"include": ["lib/**/*.ts", "index.ts"]
1010
}

0 commit comments

Comments
 (0)