Skip to content

Commit

Permalink
refactor: update dependencies and node lts for releases (#140)
Browse files Browse the repository at this point in the history
* 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
byCedric committed Jul 27, 2019
1 parent e132ac6 commit ba6a878
Show file tree
Hide file tree
Showing 6 changed files with 697 additions and 1,043 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ deploy:
skip_cleanup: true
script: npx semantic-release --dry-run --branch develop
on:
node: 10
node: 12
branch: develop
- provider: script
skip_cleanup: true
script:
- npx semantic-release --branch master
on:
branch: master
node: 10
node: 12
10 changes: 10 additions & 0 deletions commitlint.config.js
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):'),
],
};
Loading

0 comments on commit ba6a878

Please sign in to comment.