Skip to content

Commit

Permalink
build(deps-dev): bump the vitest group with 2 updates (#125)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump the vitest group with 2 updates

Bumps the vitest group with 2 updates: [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest).


Updates `@vitest/coverage-v8` from 0.34.6 to 1.1.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.1.0/packages/coverage-v8)

Updates `vitest` from 0.34.6 to 1.1.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.1.0/packages/vitest)

---
updated-dependencies:
- dependency-name: "@vitest/coverage-v8"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vitest
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vitest
...

Signed-off-by: dependabot[bot] <[email protected]>

* &&

* coverage check applies to source code only

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Renée Kooi <[email protected]>
  • Loading branch information
dependabot[bot] and goto-bus-stop authored Dec 28, 2023
1 parent 42f82a7 commit 365d13f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Run tests
run: npm run tests-only
- name: Submit coverage
if: matrix.node-version == '20.x'
if: matrix.node-version == '20.x' && matrix.react-version == '18.x'
uses: coverallsapp/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@rollup/plugin-babel": "^6.0.0",
"@u-wave/react-translate-example": "file:example",
"@u-wave/translate": "^1.1.0",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/coverage-v8": "^1.1.0",
"cross-env": "^7.0.2",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.0",
Expand All @@ -28,7 +28,7 @@
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"rollup": "^2.0.6",
"vitest": "^0.34.6"
"vitest": "^1.1.0"
},
"homepage": "https://github.com/u-wave/react-translate#readme",
"keywords": [
Expand All @@ -51,7 +51,7 @@
"prepare": "rollup -c",
"lint": "eslint --cache .",
"test": "npm run lint && npm run tests-only",
"tests-only": "vitest run --coverage.enabled --coverage.reporter=lcov --coverage.reporter=text --coverage.100",
"tests-only": "vitest run --coverage.enabled --coverage.reporter=lcov --coverage.reporter=text --coverage.100 --coverage.include='src/**'",
"example": "npm run --prefix example build && npm run --prefix example start"
},
"sideEffects": false
Expand Down

0 comments on commit 365d13f

Please sign in to comment.