Skip to content

Commit

Permalink
v1.0.32
Browse files Browse the repository at this point in the history
- Upgrade `unplugin` template
- Add some fixes for Nuxt
  • Loading branch information
ewilan-riviere committed Oct 9, 2023
1 parent 1954a64 commit 379d860
Show file tree
Hide file tree
Showing 9 changed files with 184 additions and 691 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![Banner with unplugin logo and unplugin-svg-transformer title, a SVG logo inserted for svg in title](docs/banner.jpg)
![Banner with unplugin logo and unplugin-svg-transformer title, a SVG logo inserted for svg in title](https://raw.githubusercontent.com/kiwilan/unplugin-svg-transformer/main/docs/banner.jpg)

# unplugin-svg-transformer

Expand Down
38 changes: 31 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "unplugin-svg-transformer",
"type": "module",
"version": "1.0.31",
"version": "1.0.32",
"packageManager": "[email protected]",
"description": "Import easily your SVG with Vite.",
"author": "kiwilan <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -62,11 +63,6 @@
"import": "./dist/types.js",
"require": "./dist/types.cjs"
},
"./components": {
"types": "./dist/components.d.ts",
"import": "./dist/components.js",
"require": "./dist/components.cjs"
},
"./vue": {
"types": "./dist/vue.d.ts",
"import": "./dist/vue.js",
Expand Down Expand Up @@ -122,12 +118,41 @@
"release": "npm run clean && npm run build && npm pack --dry-run && npm publish --access public",
"prepare": "husky install"
},
"peerDependencies": {
"@nuxt/kit": "^3",
"@nuxt/schema": "^3",
"esbuild": "*",
"rollup": "^3",
"vite": ">=3",
"webpack": "^4 || ^5"
},
"peerDependenciesMeta": {
"webpack": {
"optional": true
},
"rollup": {
"optional": true
},
"vite": {
"optional": true
},
"esbuild": {
"optional": true
},
"@nuxt/kit": {
"optional": true
},
"@nuxt/schema": {
"optional": true
}
},
"dependencies": {
"unplugin": "^1.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.18",
"@nuxt/kit": "^3.7.4",
"@nuxt/schema": "^3.6.5",
"@types/node": "^20.8.0",
"@types/react": "^18.2.23",
"@vitejs/plugin-vue": "^4.3.4",
Expand All @@ -139,7 +164,6 @@
"fast-glob": "^3.3.1",
"husky": "^8.0.0",
"nodemon": "^3.0.1",
"nuxt": "^3.7.4",
"react": "^18.2.0",
"rimraf": "^5.0.5",
"rollup": "^3.29.4",
Expand Down
Loading

0 comments on commit 379d860

Please sign in to comment.