Skip to content

Commit

Permalink
fix: Typo in Python import name (#23)
Browse files Browse the repository at this point in the history
Import name was supposed to be `cloudsnorkel.cdk_turbo_layers` and not `cloudsnorkel.cdk_turbo-layers` which is very hard to import.

Fix #22
  • Loading branch information
kichik authored Feb 2, 2023
1 parent c65f129 commit 877c258
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const project = new awscdk.AwsCdkConstructLibrary({
releaseToNpm: true,
publishToPypi: {
distName: 'cloudsnorkel.cdk-turbo-layers',
module: 'cloudsnorkel.cdk_turbo-layers',
module: 'cloudsnorkel.cdk_turbo_layers',
},
publishToGo: {
moduleName: 'github.com/CloudSnorkel/cdk-turbo-layers-go',
Expand Down
2 changes: 1 addition & 1 deletion package.json

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

0 comments on commit 877c258

Please sign in to comment.