Skip to content

Commit

Permalink
Update Vite peer deps [publish]
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBarre committed Nov 26, 2024
1 parent abf86c0 commit 5ae0b4b
Show file tree
Hide file tree
Showing 5 changed files with 330 additions and 453 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.5.1

- Vite 6 as a peer deps

## 0.5.0

- Drop support for `?inline`, this now supported into core in v5
Expand Down
Binary file modified bun.lockb
Binary file not shown.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-fast-react-svg",
"version": "0.5.0",
"version": "0.5.1",
"type": "module",
"license": "MIT",
"scripts": {
Expand All @@ -10,16 +10,16 @@
"ci": "tsc && bun prettier-ci && bun run build && cd dist && publint"
},
"peerDependencies": {
"react": ">=16",
"vite": "^5"
"react": "^18.3.1",
"vite": "^5 || ^6"
},
"devDependencies": {
"@arnaud-barre/tnode": "^0.19.2",
"@types/node": "^18.19.50",
"@types/react": "^18.3.8",
"@arnaud-barre/tnode": "^0.24.0",
"@types/node": "^20.17.8",
"@types/react": "^18.3.12",
"prettier": "3.0.3",
"publint": "^0.2.11",
"typescript": "^5.6.2",
"vite": "^5.4.7"
"publint": "^0.2.12",
"typescript": "^5.7.2",
"vite": "^6.0.0"
}
}
5 changes: 2 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
"exclude": ["playground"],
"compilerOptions": {
/* Target node 18 */
"module": "NodeNext",
"module": "ES2022",
"lib": ["ES2021"],
"target": "ES2021",

/* Bundler mode */
"moduleResolution": "NodeNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"noEmit": true,

Expand Down
Loading

0 comments on commit 5ae0b4b

Please sign in to comment.