Skip to content

Commit 206405f

Browse files
committed
chore: upgrade deps
1 parent 773c3b0 commit 206405f

File tree

4 files changed

+919
-1213
lines changed

4 files changed

+919
-1213
lines changed

eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { sxzz } from '@sxzz/eslint-config'
2+
23
export default sxzz().append({
34
files: ['README.md/*.ts'],
45
rules: {

package.json

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,27 @@
11
{
22
"name": "unplugin-inline-enum",
3+
"type": "module",
34
"version": "0.6.2",
4-
"packageManager": "pnpm@10.24.0",
5+
"packageManager": "pnpm@10.25.0",
56
"description": "Inline enum values to optimize bundle size.",
6-
"type": "module",
7-
"keywords": [
8-
"unplugin",
9-
"rollup",
10-
"vite",
11-
"esbuild",
12-
"webpack"
13-
],
7+
"author": "Kevin Deng <[email protected]>",
148
"license": "MIT",
9+
"funding": "https://github.com/sponsors/sxzz",
1510
"homepage": "https://github.com/unplugin/unplugin-inline-enum#readme",
16-
"bugs": {
17-
"url": "https://github.com/unplugin/unplugin-inline-enum/issues"
18-
},
1911
"repository": {
2012
"type": "git",
2113
"url": "git+https://github.com/unplugin/unplugin-inline-enum.git"
2214
},
23-
"author": "Kevin Deng <[email protected]>",
24-
"funding": "https://github.com/sponsors/sxzz",
25-
"files": [
26-
"dist"
15+
"bugs": {
16+
"url": "https://github.com/unplugin/unplugin-inline-enum/issues"
17+
},
18+
"keywords": [
19+
"unplugin",
20+
"rollup",
21+
"vite",
22+
"esbuild",
23+
"webpack"
2724
],
28-
"main": "./dist/index.js",
29-
"module": "./dist/index.js",
30-
"types": "./dist/index.d.ts",
3125
"exports": {
3226
".": "./dist/index.js",
3327
"./api": "./dist/api.js",
@@ -38,6 +32,9 @@
3832
"./webpack": "./dist/webpack.js",
3933
"./package.json": "./package.json"
4034
},
35+
"main": "./dist/index.js",
36+
"module": "./dist/index.js",
37+
"types": "./dist/index.d.ts",
4138
"typesVersions": {
4239
"*": {
4340
"*": [
@@ -46,9 +43,15 @@
4643
]
4744
}
4845
},
46+
"files": [
47+
"dist"
48+
],
4949
"publishConfig": {
5050
"access": "public"
5151
},
52+
"engines": {
53+
"node": ">=20.19.0"
54+
},
5255
"scripts": {
5356
"lint": "eslint --cache .",
5457
"lint:fix": "pnpm run lint --fix",
@@ -69,25 +72,22 @@
6972
},
7073
"devDependencies": {
7174
"@babel/types": "^7.28.5",
72-
"@sxzz/eslint-config": "^7.4.0",
75+
"@sxzz/eslint-config": "^7.4.1",
7376
"@sxzz/prettier-config": "^2.2.6",
74-
"@sxzz/test-utils": "^0.5.13",
75-
"@types/node": "^24.10.1",
77+
"@sxzz/test-utils": "^0.5.14",
78+
"@types/node": "^25.0.1",
7679
"@types/picomatch": "^4.0.2",
7780
"bumpp": "^10.3.2",
78-
"esbuild": "^0.27.0",
79-
"eslint": "^9.39.1",
80-
"prettier": "^3.7.3",
81+
"esbuild": "^0.27.1",
82+
"eslint": "^9.39.2",
83+
"prettier": "^3.7.4",
8184
"rollup": "^4.53.3",
82-
"tsdown": "^0.16.8",
85+
"tsdown": "^0.17.3",
8386
"typescript": "^5.9.3",
8487
"unplugin-oxc": "^0.5.5",
85-
"vite": "^7.2.6",
86-
"vitest": "^4.0.14",
88+
"vite": "^7.2.7",
89+
"vitest": "^4.0.15",
8790
"webpack": "^5.103.0"
8891
},
89-
"engines": {
90-
"node": ">=20.19.0"
91-
},
9292
"prettier": "@sxzz/prettier-config"
9393
}

0 commit comments

Comments
 (0)