Skip to content

Commit

Permalink
feat: support Vite 5 (#9)
Browse files Browse the repository at this point in the history
* feat: support Vite 5

* chore: update `package-lock.json`

* chore: update `prettier-plugin-jsdoc` config

* chore: install `@vitest/coverage-v8`

* chore: rebuild `package-lock.json`

* ci: update to Node.js 18

* chore: fix peer dependency syntax
  • Loading branch information
angeloashmore authored Dec 11, 2023
1 parent 05de639 commit 0674172
Show file tree
Hide file tree
Showing 6 changed files with 5,078 additions and 9,045 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [14]
node: [18]

steps:
- name: Set up Node
Expand Down Expand Up @@ -49,11 +49,11 @@ jobs:
run: npm run build

- name: Coverage
if: matrix.os == 'ubuntu-latest' && matrix.node == 14
if: matrix.os == 'ubuntu-latest' && matrix.node == 18
uses: codecov/codecov-action@v3

- name: Size
if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == 14
if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == 18
uses: andresz1/size-limit-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"importOrderGroupNamespaceSpecifiers": true,
"jsdocSeparateReturnsFromParam": true,
"jsdocSeparateTagGroups": true,
"jsdocSingleLineComment": false,
"jsdocCommentLineStrategy": "multiline",
"tsdoc": true,
"printWidth": 80,
"useTabs": true,
Expand Down
Loading

0 comments on commit 0674172

Please sign in to comment.