Skip to content

Commit

Permalink
adding ECS
Browse files Browse the repository at this point in the history
  • Loading branch information
mbonig committed Aug 1, 2022
1 parent 0983ed0 commit b182f83
Show file tree
Hide file tree
Showing 19 changed files with 2,452 additions and 58 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json

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

3 changes: 2 additions & 1 deletion .gitattributes

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

11 changes: 0 additions & 11 deletions .github/dependabot.yml

This file was deleted.

90 changes: 90 additions & 0 deletions .github/workflows/upgrade-main.yml

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

3 changes: 2 additions & 1 deletion .gitignore

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

1 change: 0 additions & 1 deletion .npmignore

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

9 changes: 9 additions & 0 deletions .projen/deps.json

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

3 changes: 2 additions & 1 deletion .projen/files.json

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

64 changes: 64 additions & 0 deletions .projen/tasks.json

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

11 changes: 7 additions & 4 deletions .projenrc.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const { awscdk } = require('projen');

const dependencies = [
'@aws-sdk/client-ecs',
'cdk-iam-floyd',
];
const project = new awscdk.AwsCdkConstructLibrary({
Expand All @@ -15,8 +16,11 @@ const project = new awscdk.AwsCdkConstructLibrary({
majorVersion: 2,
repository: 'https://github.com/mbonig/nightynight',
defaultReleaseBranch: 'main',
deps: dependencies,
peerDeps: dependencies,
deps: ['cdk-iam-floyd'],
peerDeps: ['cdk-iam-floyd'],
bundledDeps: [
'@aws-sdk/client-ecs',
],
devDeps: [
'yarn',
'esbuild',
Expand All @@ -32,7 +36,6 @@ const project = new awscdk.AwsCdkConstructLibrary({
module: 'mbonig.nightynight',
distName: 'mbonig.nightynight',
},
dependabot: true,
buildWorkflow: true,
});

Expand All @@ -47,5 +50,5 @@ project.addFields({

project.gitignore.exclude('cdk.context.json', '.cdk.staging/', '.idea/', '.parcel-cache/', 'cdk.out/');
project.npmignore.exclude('cdk.context.json', '.cdk.staging/', '.idea/', '.parcel-cache/', 'cdk.out/');
project.npmignore.include('lib/*.handler.ts');

project.synth();

0 comments on commit b182f83

Please sign in to comment.