Skip to content

Commit

Permalink
Upgrade Vite peer to v3
Browse files Browse the repository at this point in the history
Require lib DOM
Update devDependencies
  • Loading branch information
Shinigami92 committed Aug 8, 2022
1 parent ebb49ba commit f272295
Show file tree
Hide file tree
Showing 5 changed files with 438 additions and 321 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node_version: [12, 14, 16]
node_version: [14, 16, 18]
fail-fast: false

name: 'Build: node-${{ matrix.node_version }}, ${{ matrix.os }}'
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 6
version: 7

- name: Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v3
Expand All @@ -47,7 +47,7 @@ jobs:

lint:
runs-on: ubuntu-latest
name: 'Lint: node-16, ubuntu-latest'
name: 'Lint: node-18, ubuntu-latest'
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -56,12 +56,12 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 6
version: 7

- name: Set node version to 16
- name: Set node version to 18
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: 'pnpm'

- name: Prepare
Expand All @@ -72,7 +72,7 @@ jobs:

audit:
runs-on: ubuntu-latest
name: 'Audit: node-16, ubuntu-latest'
name: 'Audit: node-18, ubuntu-latest'
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -81,12 +81,12 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 6
version: 7

- name: Set node version to 16
- name: Set node version to 18
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: 'pnpm'

- name: Prepare
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,22 +37,22 @@
"prepublishOnly": "pnpm run clean && pnpm install && yarn run build"
},
"devDependencies": {
"@types/node": "~16.11.26",
"@typescript-eslint/eslint-plugin": "~5.13.0",
"@typescript-eslint/parser": "~5.13.0",
"eslint": "~8.10.0",
"eslint-config-prettier": "~8.4.0",
"eslint-define-config": "~1.2.5",
"@types/node": "~18.6.4",
"@typescript-eslint/eslint-plugin": "~5.32.0",
"@typescript-eslint/parser": "~5.32.0",
"eslint": "~8.21.0",
"eslint-config-prettier": "~8.5.0",
"eslint-define-config": "~1.6.0",
"eslint-gitignore": "~0.1.0",
"eslint-plugin-prettier": "~4.0.0",
"prettier": "2.5.1",
"prettier-plugin-organize-imports": "~2.3.4",
"eslint-plugin-prettier": "~4.2.1",
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "~3.0.3",
"rimraf": "~3.0.2",
"typescript": "~4.6.2",
"vite": "~2.8.6"
"typescript": "~4.7.4",
"vite": "~3.0.4"
},
"peerDependencies": {
"vite": "^2.0.0"
"vite": "^2.0.0 || ^3.0.0"
},
"packageManager": "pnpm@6.32.2"
"packageManager": "pnpm@7.9.0"
}
Loading

0 comments on commit f272295

Please sign in to comment.