-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d6ba4d3
commit cc97eae
Showing
11 changed files
with
197 additions
and
99 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"@effect-aws/lib-dynamodb": minor | ||
"@effect-aws/secrets-manager": patch | ||
"@effect-aws/ssm": patch | ||
--- | ||
|
||
simplify layers configuration (closes #78) |
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 |
---|---|---|
|
@@ -86,8 +86,13 @@ const dynamodbLib = new TypeScriptLibProject({ | |
"@aws-sdk/client-dynamodb@^3", | ||
"@aws-sdk/lib-dynamodb@^3", | ||
], | ||
devDeps: commonDevDeps, | ||
devDeps: [ | ||
...commonDevDeps, | ||
"@effect-aws/client-dynamodb@workspace:^", | ||
"[email protected]", | ||
], | ||
peerDeps: [...commonPeerDeps, dynamodbClient.package.packageName], | ||
peerDependencyOptions: { pinnedDevDependency: false }, | ||
}); | ||
|
||
new TypeScriptLibProject({ | ||
|
@@ -313,15 +318,27 @@ new TypeScriptLibProject({ | |
const secretsManager = new TypeScriptLibProject({ | ||
parent: project, | ||
name: "secrets-manager", | ||
devDeps: ["@aws-sdk/client-secrets-manager@^3", "@fluffy-spoon/substitute"], | ||
devDeps: [ | ||
"@aws-sdk/client-secrets-manager@^3", | ||
"@effect-aws/client-secrets-manager@workspace:^", | ||
"@fluffy-spoon/substitute", | ||
"[email protected]", | ||
], | ||
peerDeps: [...commonPeerDeps, secretsManagerClient.package.packageName], | ||
peerDependencyOptions: { pinnedDevDependency: false }, | ||
}); | ||
|
||
const ssm = new TypeScriptLibProject({ | ||
parent: project, | ||
name: "ssm", | ||
devDeps: ["@aws-sdk/client-ssm@^3", "@fluffy-spoon/substitute"], | ||
devDeps: [ | ||
"@aws-sdk/client-ssm@^3", | ||
"@effect-aws/client-ssm@workspace:^", | ||
"@fluffy-spoon/substitute", | ||
"[email protected]", | ||
], | ||
peerDeps: [...commonPeerDeps, ssmClient.package.packageName], | ||
peerDependencyOptions: { pinnedDevDependency: false }, | ||
}); | ||
|
||
new TypeScriptLibProject({ | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.