Skip to content

Commit

Permalink
chore(dev-deps):upgrade CDK packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Thon Becker committed Apr 30, 2021
1 parent d1e9684 commit 16e93e4
Show file tree
Hide file tree
Showing 10 changed files with 572 additions and 521 deletions.
18 changes: 18 additions & 0 deletions .gitattributes

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

9 changes: 8 additions & 1 deletion .github/workflows/build.yml

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

36 changes: 23 additions & 13 deletions .github/workflows/release.yml

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

4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
.jsii
.nyc_output
.yarn-integrity
/.changelog.tmp.md
/.version.tmp.json
/coverage
/dist
/lib
Expand All @@ -30,6 +32,7 @@ tsconfig.json
yarn-debug.log*
yarn-error.log*
!/.eslintrc.json
!/.gitattributes
!/.github/dependabot.yml
!/.github/pull_request_template.md
!/.github/workflows/build.yml
Expand All @@ -47,4 +50,3 @@ yarn-error.log*
!/test
!/tsconfig.eslint.json
!/tsconfig.jest.json
!version.json
1 change: 0 additions & 1 deletion .npmignore

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

2 changes: 1 addition & 1 deletion .projen/deps.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
},
{
"name": "projen",
"version": "^0.17.51",
"version": "^0.17.72",
"type": "build"
},
{
Expand Down
57 changes: 32 additions & 25 deletions .projen/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,30 @@
],
"condition": "git diff --exit-code > /dev/null"
},
"bump": {
"name": "bump",
"category": "20.release",
"description": "Bumps version based on latest git tag and generates a changelog entry",
"steps": [
{
"exec": "git describe --tags --match=\"v*\" --first-parent --abbrev=0 > .version.tmp.json"
},
{
"exec": "standard-version"
}
],
"condition": "! git log --oneline -1 | grep -q \"chore(release):\""
},
"unbump": {
"name": "unbump",
"category": "20.release",
"description": "Restores version to 0.0.0",
"steps": [
{
"exec": "standard-version -r 0.0.0"
}
]
},
"compile": {
"name": "compile",
"category": "00.build",
Expand Down Expand Up @@ -97,31 +121,6 @@
}
]
},
"bump": {
"name": "bump",
"category": "20.release",
"description": "Commits a bump to the package version based on conventional commits",
"steps": [
{
"exec": "standard-version"
}
],
"condition": "! git log --oneline -1 | grep -q \"chore(release):\""
},
"release": {
"name": "release",
"category": "20.release",
"description": "Bumps version & push to main",
"steps": [
{
"spawn": "bump"
},
{
"exec": "git push --follow-tags origin main"
}
],
"condition": "! git log --oneline -1 | grep -q \"chore(release):\""
},
"test:watch": {
"name": "test:watch",
"category": "10.test",
Expand Down Expand Up @@ -155,6 +154,14 @@
}
]
},
"default": {
"name": "default",
"steps": [
{
"exec": "node .projenrc.js"
}
]
},
"watch": {
"name": "watch",
"category": "00.build",
Expand Down
18 changes: 9 additions & 9 deletions .versionrc.json

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

9 changes: 5 additions & 4 deletions package.json

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

Loading

0 comments on commit 16e93e4

Please sign in to comment.