-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: update dependencies and node lts for releases (#140)
* refactor: make commitlint ignore dependabot commits * refactor: update all dependencies to latest versions * refactor: remove tslint ignore comments * pipeline: use latest node lts for releases
- Loading branch information
Showing
6 changed files
with
697 additions
and
1,043 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
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,10 @@ | ||
module.exports = { | ||
extends: [ | ||
'@peakfijn/config-commitlint', | ||
], | ||
ignores: [ | ||
// fix: ignore dependency updates by dependabot | ||
commit => commit.startsWith('chore(deps):'), | ||
commit => commit.startsWith('chore(deps-dev):'), | ||
], | ||
}; |
Oops, something went wrong.