Skip to content

Commit

Permalink
Merge branch 'main' into feat/organizations
Browse files Browse the repository at this point in the history
  • Loading branch information
floydspace committed Dec 16, 2024
2 parents c4f8ea7 + 9720f3c commit f4297e7
Show file tree
Hide file tree
Showing 53 changed files with 4,846 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .changeset/hot-bags-greet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@effect-aws/client-auto-scaling": major
"@effect-aws/client-ecr": major
---

Adds the ECR and AutoScaling clients
16 changes: 16 additions & 0 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,22 @@ new TypeScriptLibProject({
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-ecr",
deps: [...commonDeps, "@aws-sdk/client-ecr@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-auto-scaling",
deps: [...commonDeps, "@aws-sdk/client-auto-scaling@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

project.addImplicitDependency(dynamodbLib, dynamodbClient);
project.addImplicitDependency(secretsManager, secretsManagerClient);
project.addImplicitDependency(ssm, ssmClient);
Expand Down
2 changes: 2 additions & 0 deletions package.json

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

126 changes: 126 additions & 0 deletions packages/client-auto-scaling/.eslintrc.json

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

22 changes: 22 additions & 0 deletions packages/client-auto-scaling/.gitattributes

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

46 changes: 46 additions & 0 deletions packages/client-auto-scaling/.gitignore

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

20 changes: 20 additions & 0 deletions packages/client-auto-scaling/.npmignore

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

1 change: 1 addition & 0 deletions packages/client-auto-scaling/.prettierignore

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

3 changes: 3 additions & 0 deletions packages/client-auto-scaling/.prettierrc.json

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

72 changes: 72 additions & 0 deletions packages/client-auto-scaling/.projen/deps.json

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

21 changes: 21 additions & 0 deletions packages/client-auto-scaling/.projen/files.json

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

Loading

0 comments on commit f4297e7

Please sign in to comment.