Skip to content

Commit

Permalink
feat: add vite 5 support (#21)
Browse files Browse the repository at this point in the history
Co-authored-by: bluwy <[email protected]>
  • Loading branch information
gabrielrbarbosa and bluwy authored Nov 16, 2023
1 parent 8d00b66 commit a502eb0
Show file tree
Hide file tree
Showing 4 changed files with 674 additions and 527 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
version: 8

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

- run: pnpm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
uses: actions/checkout@v4
- name: Create Release for Tag
id: release_tag
uses: yyx990803/release-tag@master
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"engines": {
"node": ">=14.6.0"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite-plugin-basic-ssl.git"
Expand All @@ -35,7 +36,7 @@
},
"homepage": "https://github.com/vitejs/vite-plugin-basic-ssl/#readme",
"peerDependencies": {
"vite": "^3.0.0 || ^4.0.0"
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@rollup/pluginutils": "^4.2.1",
Expand All @@ -55,7 +56,7 @@
"slash": "^3.0.0",
"source-map": "^0.6.1",
"unbuild": "^0.7.4",
"vite": "^4.0.0",
"vite": "^5.0.0",
"vitest": "^0.15.1",
"node-forge": "^1.3.1"
}
Expand Down
Loading

0 comments on commit a502eb0

Please sign in to comment.