Skip to content

Commit

Permalink
chore: update deps, close #31
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Aug 31, 2024
1 parent 78f88c0 commit 9e15253
Show file tree
Hide file tree
Showing 7 changed files with 4,066 additions and 3,513 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ export default {

<br></details>


<details>
<summary>Webpack</summary><br>

Expand Down
4 changes: 3 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import antfu from '@antfu/eslint-config'

export default antfu()
export default antfu({
type: 'lib',
})
54 changes: 22 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "unplugin-starter",
"type": "module",
"version": "0.1.0",
"packageManager": "pnpm@8.6.12",
"packageManager": "pnpm@9.9.0",
"description": "",
"license": "MIT",
"homepage": "https://github.com/antfu/unplugin-starter#readme",
Expand All @@ -22,47 +22,38 @@
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./astro": {
"types": "./dist/astro.d.ts",
"import": "./dist/astro.js",
"require": "./dist/astro.cjs"
},
"./rspack": {
"types": "./dist/rspack.d.ts",
"import": "./dist/rspack.js",
"require": "./dist/rspack.cjs"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.js",
"require": "./dist/vite.cjs"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"import": "./dist/webpack.js",
"require": "./dist/webpack.cjs"
},
"./rollup": {
"types": "./dist/rollup.d.ts",
"import": "./dist/rollup.js",
"require": "./dist/rollup.cjs"
},
"./esbuild": {
"types": "./dist/esbuild.d.ts",
"import": "./dist/esbuild.js",
"require": "./dist/esbuild.cjs"
},
"./nuxt": {
"types": "./dist/nuxt.d.ts",
"import": "./dist/nuxt.js",
"require": "./dist/nuxt.cjs"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js",
"require": "./dist/types.cjs"
},
Expand Down Expand Up @@ -102,45 +93,44 @@
"webpack": "^4 || ^5"
},
"peerDependenciesMeta": {
"webpack": {
"@nuxt/kit": {
"optional": true
},
"rollup": {
"@nuxt/schema": {
"optional": true
},
"vite": {
"esbuild": {
"optional": true
},
"esbuild": {
"rollup": {
"optional": true
},
"@nuxt/kit": {
"vite": {
"optional": true
},
"@nuxt/schema": {
"webpack": {
"optional": true
}
},
"dependencies": {
"unplugin": "^1.5.1"
"unplugin": "^1.12.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.2.2",
"@nuxt/kit": "^3.8.2",
"@nuxt/schema": "^3.8.2",
"@types/node": "^20.10.3",
"bumpp": "^9.2.0",
"@antfu/eslint-config": "^3.0.0",
"@nuxt/kit": "^3.13.0",
"@nuxt/schema": "^3.13.0",
"@types/node": "^22.5.1",
"bumpp": "^9.5.2",
"chalk": "^5.3.0",
"eslint": "^8.55.0",
"esno": "^4.0.0",
"eslint": "^9.9.1",
"esno": "^4.7.0",
"fast-glob": "^3.3.2",
"nodemon": "^3.0.2",
"rimraf": "^5.0.5",
"rollup": "^4.6.1",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vite": "^5.0.4",
"vitest": "^0.34.6",
"webpack": "^5.89.0"
"nodemon": "^3.1.4",
"rollup": "^4.21.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vitest": "^2.0.5",
"webpack": "^5.94.0"
}
}
4 changes: 2 additions & 2 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dev": "nodemon -w '../src/**/*.ts' -e .ts -x vite"
},
"devDependencies": {
"vite": "^5.0.4",
"vite-plugin-inspect": "^0.8.1"
"vite": "^5.4.2",
"vite-plugin-inspect": "^0.8.7"
}
}
Loading

0 comments on commit 9e15253

Please sign in to comment.