Skip to content

Commit c47dd44

Browse files
committed
wip
1 parent f940dcd commit c47dd44

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.projen/tasks.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ const project = new awscdk.AwsCdkConstructLibrary({
1818
// packageName: undefined, /* The "name" in package.json. */
1919
});
2020
// Bundle custom resource handler Lambda code
21-
project.projectBuild.compileTask.prependExec('npm install && npm run build', {cwd: 'lambda/nodejs-build'});
21+
project.projectBuild.compileTask.prependExec('npm ci && npm run build', {cwd: 'lambda/nodejs-build'});
2222
project.synth();

lambda/nodejs-build/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"build": "npx esbuild index.ts --bundle --outdir=./ --platform=node --external:aws-sdk"
7+
"build": "esbuild index.ts --bundle --outdir=./ --platform=node --external:aws-sdk"
88
},
99
"keywords": [],
1010
"author": "",

0 commit comments

Comments
 (0)