Skip to content

Commit

Permalink
feat(deps): upgrade, widen ranges
Browse files Browse the repository at this point in the history
It's now possible to use newer (Vuex 4 and Vue 3) and also older
versions. There are some new tests to make sure it works with these
different versions. The dev toolchain has also been updated.
  • Loading branch information
Thomaash committed Aug 15, 2021
1 parent 125bf3d commit 48a1146
Show file tree
Hide file tree
Showing 12 changed files with 3,561 additions and 2,980 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,12 @@ jobs:
- attach_workspace:
at: .

# Test Renovate updated package versions (i.e. latest)
- run: npm run test

# Test various older versions
- run: npm run test:versions

gh_pages:
executor: node

Expand Down
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ module.exports = {
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
'prettier/@typescript-eslint',
],
plugins: ['@typescript-eslint', 'prettier', 'mocha'],
rules: {
Expand Down
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install commitlint --edit ""
5 changes: 5 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm test
npx lint-staged
Loading

0 comments on commit 48a1146

Please sign in to comment.