Skip to content

Commit

Permalink
chore: remove aws-lambda from Dependencies (#5)
Browse files Browse the repository at this point in the history
* chore: remove aws-lambda from deps

* fix: package.json
  • Loading branch information
badmintoncryer authored Oct 28, 2024
1 parent 8e15a7f commit 61be083
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .projen/deps.json

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

4 changes: 2 additions & 2 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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]',
Expand All @@ -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',
Expand Down

0 comments on commit 61be083

Please sign in to comment.