Skip to content

Commit

Permalink
feat: support Vite 5
Browse files Browse the repository at this point in the history
  • Loading branch information
vshepel committed Nov 21, 2023
1 parent f94762e commit 942f2ab
Show file tree
Hide file tree
Showing 3 changed files with 916 additions and 1,555 deletions.
12 changes: 6 additions & 6 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "vite-svg-sprite-wrapper-example",
"version": "0.0.0",
"private": true,
"license": "MIT",
"packageManager": "pnpm@8.10.5",
"type": "module",
"scripts": {
"dev": "vite --open"
"dev": "vite",
"build": "vite build"
},
"devDependencies": {
"typescript": "^4",
"vite": "^4",
"typescript": "^5",
"vite": "^5",
"vite-svg-sprite-wrapper": "workspace:*"
}
}
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vite-svg-sprite-wrapper",
"type": "module",
"version": "1.1.1",
"packageManager": "pnpm@7.5.0",
"packageManager": "pnpm@8.10.5",
"description": "Creating one sprite file on the fly",
"author": "vshepel <web.shepel@gmail.com>",
"license": "MIT",
Expand Down Expand Up @@ -39,23 +39,23 @@
"release": "bumpp && npm publish"
},
"peerDependencies": {
"vite": "^4.0.0"
"vite": "^4.0.0 || v5.0.0"
},
"dependencies": {
"fast-glob": "^3.2.12",
"fast-glob": "^3.3.2",
"picocolors": "^1.0.0",
"picomatch": "^2.3.1",
"picomatch": "^3.0.1",
"svg-sprite": "^2.0.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.5",
"@types/node": "^20.3.1",
"@types/picomatch": "^2.3.0",
"@types/svg-sprite": "^0.0.34",
"bumpp": "^9.1.1",
"eslint": "^8.42.0",
"tsup": "^7.0.0",
"typescript": "^5.1.3",
"vite": "^4.3.9"
"@antfu/eslint-config": "^2.0.0",
"@types/node": "^20.9.3",
"@types/picomatch": "^2.3.3",
"@types/svg-sprite": "^0.0.38",
"bumpp": "^9.2.0",
"eslint": "^8.54.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vite": "^5.0.2"
}
}
Loading

0 comments on commit 942f2ab

Please sign in to comment.