Skip to content

Commit

Permalink
feat: update badge dep
Browse files Browse the repository at this point in the history
  • Loading branch information
martin.mueller committed Jan 10, 2021
1 parent 04773b3 commit 730b5f3
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ const project = new TypeScriptProject({
],
});

project.setScript('deploy', 'cdk deploy');
project.setScript('destroy', 'cdk destroy');

const common_exclude = ['cdk.out'];
project.npmignore.exclude(...common_exclude);
project.gitignore.exclude(...common_exclude);
Expand Down
2 changes: 1 addition & 1 deletion cdk.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"app": "npx ts-node --project tsconfig.jest.json src/integ.default.ts",
"app": "npx ts-node --project tsconfig.jest.json test/integ.default.ts",
"context": {
"@aws-cdk/core:enableStackNameDuplicates": true,
"aws-cdk:enableDiffNoFail": true,
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
"scripts": {
"projen": "npx projen",
"start": "npx projen start",
"deploy": "cdk deploy",
"destroy": "cdk destroy",
"clobber": "npx projen clobber",
"compile": "npx projen compile",
"test:compile": "npx projen test:compile",
Expand Down Expand Up @@ -34,7 +36,7 @@
"@types/node": "^10.17.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"aws-cdk-build-badge": "^0.0.5",
"aws-cdk-build-badge": "^0.0.6",
"eslint": "^7.16.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-import-resolver-typescript": "^2.3.0",
Expand All @@ -56,7 +58,7 @@
"@aws-cdk/core": "1.83.0",
"@aws-cdk/pipelines": "1.83.0",
"@mobileposse/auto-delete-bucket": "^1.55.0",
"aws-cdk-build-badge": "^0.0.5"
"aws-cdk-build-badge": "^0.0.6"
},
"bundledDependencies": [],
"keywords": [
Expand Down
1 change: 1 addition & 0 deletions test/integ.default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export class IntegTesting {
}],
branch: 'master',
repositoryName: 'aws-cdk-staging-pipeline',
badges: { synthBadge: true },
customStack: (scope, _) => {
const customStack = new CustomStack(scope, 'TestCustomStack');
customStack.cfnOutputs.Blub = new core.CfnOutput(customStack, 'OutputBlub', { value: 'BlubValue ' });
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1724,10 +1724,10 @@ atob@^2.1.2:
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==

aws-cdk-build-badge@^0.0.5:
version "0.0.5"
resolved "https://registry.yarnpkg.com/aws-cdk-build-badge/-/aws-cdk-build-badge-0.0.5.tgz#cc11932930000633e1a0bfd328ffc55a4e6050cf"
integrity sha512-arF5Y35zrEpZTVmpMJobwx19wx/HzdDNRthj6qr+kI0WOpmL26QASNxoAQGxaHVPyqUMNnhJX61xgC8gp+5uZA==
aws-cdk-build-badge@^0.0.6:
version "0.0.6"
resolved "https://registry.yarnpkg.com/aws-cdk-build-badge/-/aws-cdk-build-badge-0.0.6.tgz#703a079c0f502cdb3b0599a301f0485a20337049"
integrity sha512-kKOZPQ0xCEmDxh6DhjNbGHDpl4R1sWFo6b1rTBwYGzzDH+rv2AvNMG25ebLWOvF/HzWiTvgKWEESRR88yeML2w==
dependencies:
"@aws-cdk/assert" "1.83.0"
"@types/aws-lambda" "^8.10.70"
Expand Down

0 comments on commit 730b5f3

Please sign in to comment.