-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove
aws-lambda
from Dependencies (#5)
* chore: remove aws-lambda from deps * fix: package.json
- Loading branch information
1 parent
8e15a7f
commit 61be083
Showing
2 changed files
with
2 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ const project = new awscdk.AwsCdkConstructLibrary({ | |
|
||
keywords: ['aws', 'cdk', 'ec2', 'aws-cdk'], | ||
gitignore: ['*.js', '*.d.ts', '!test/.*.snapshot/**/*', '.tmp'], | ||
deps: ['aws-lambda', '@aws-sdk/client-iot'], | ||
deps: ['@aws-sdk/client-iot'], | ||
description: 'CDK Construct for AWS IoT Core certificates and things', | ||
devDeps: [ | ||
'@aws-cdk/[email protected]', | ||
|
@@ -23,7 +23,7 @@ const project = new awscdk.AwsCdkConstructLibrary({ | |
distName: 'cdk-iot-core-certificates-v3', | ||
module: 'cdk-iot-core-certificates-v3', | ||
}, | ||
bundledDeps: ['@aws-sdk/client-iot', 'aws-lambda', '@smithy/smithy-client', '@types/aws-lambda'], | ||
bundledDeps: ['@aws-sdk/client-iot', '@smithy/smithy-client', 'aws-lambda', '@types/aws-lambda'], | ||
}); | ||
project.projectBuild.testTask.exec( | ||
'yarn tsc -p tsconfig.dev.json && yarn integ-runner', | ||
|