Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e99ea5f

Browse files
renovate[bot]sxzz
andauthored
fix(deps): update all non-major dependencies (#69)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: 三咲智子 Kevin Deng <[email protected]>
1 parent 8f5e234 commit e99ea5f

File tree

10 files changed

+1090
-677
lines changed

10 files changed

+1090
-677
lines changed

benchmark/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ for (const code of codes) {
1515
transformJsxToString(`jsxToString(${code})`, {
1616
debug: true,
1717
plugins: ['jsx'],
18-
})
18+
}),
1919
)
2020
}
2121

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "unplugin-jsx-string",
33
"version": "0.7.1",
4-
"packageManager": "pnpm@8.8.0",
4+
"packageManager": "pnpm@8.10.5",
55
"description": "Converts JSX to HTML strings at compile time.",
66
"keywords": [
77
"unplugin",
@@ -101,32 +101,32 @@
101101
"prepublishOnly": "pnpm run build"
102102
},
103103
"dependencies": {
104-
"@babel/parser": "^7.23.0",
105-
"@babel/types": "^7.23.0",
106-
"@rollup/pluginutils": "^5.0.4",
104+
"@babel/parser": "^7.23.3",
105+
"@babel/types": "^7.23.3",
106+
"@rollup/pluginutils": "^5.0.5",
107107
"entities": "^4.5.0",
108108
"estree-walker": "^3.0.3",
109109
"jsesc": "^3.0.2",
110-
"magic-string": "^0.30.4",
111-
"unplugin": "^1.5.0"
110+
"magic-string": "^0.30.5",
111+
"unplugin": "^1.5.1"
112112
},
113113
"devDependencies": {
114-
"@sxzz/eslint-config": "^3.6.1",
114+
"@sxzz/eslint-config": "^3.7.4",
115115
"@sxzz/prettier-config": "^2.0.0",
116-
"@types/benchmark": "^2.1.3",
117-
"@types/jsesc": "^3.0.1",
118-
"@types/node": "^20.8.2",
119-
"@types/react": "^18.2.25",
116+
"@types/benchmark": "^2.1.5",
117+
"@types/jsesc": "^3.0.3",
118+
"@types/node": "^20.9.2",
119+
"@types/react": "^18.2.37",
120120
"benchmark": "^2.1.4",
121121
"bumpp": "^9.2.0",
122-
"eslint": "^8.50.0",
123-
"eslint-define-config": "^1.23.0",
124-
"fast-glob": "^3.3.1",
125-
"prettier": "^3.0.3",
122+
"eslint": "^8.54.0",
123+
"eslint-define-config": "^1.24.1",
124+
"fast-glob": "^3.3.2",
125+
"prettier": "^3.1.0",
126126
"tsup": "^7.2.0",
127-
"tsx": "^4.1.1",
127+
"tsx": "^4.1.4",
128128
"typescript": "^5.2.2",
129-
"vite": "^4.4.10",
129+
"vite": "^4.5.0",
130130
"vitest": "^0.34.6"
131131
},
132132
"engines": {

playground/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "unplugin-jsx-string-playground",
33
"version": "0.0.0",
4-
"packageManager": "pnpm@8.8.0",
4+
"packageManager": "pnpm@8.10.5",
55
"license": "MIT",
66
"author": "三咲智子 <[email protected]>",
77
"scripts": {
@@ -11,19 +11,19 @@
1111
"vercel-build": "pnpm run -C .. build && pnpm build"
1212
},
1313
"dependencies": {
14-
"@unocss/reset": "^0.56.5",
15-
"@vueuse/core": "^10.4.1",
14+
"@unocss/reset": "^0.57.6",
15+
"@vueuse/core": "^10.6.1",
1616
"unplugin-jsx-string": "workspace:*",
17-
"vue": "^3.3.4"
17+
"vue": "^3.3.8"
1818
},
1919
"devDependencies": {
2020
"@iconify-json/carbon": "^1.1.21",
21-
"@vitejs/plugin-vue": "^4.4.0",
22-
"@vue/runtime-core": "^3.3.4",
23-
"unocss": "^0.56.5",
24-
"unplugin-auto-import": "^0.16.6",
21+
"@vitejs/plugin-vue": "^4.5.0",
22+
"@vue/runtime-core": "^3.3.8",
23+
"unocss": "^0.57.6",
24+
"unplugin-auto-import": "^0.16.7",
2525
"unplugin-vue-components": "^0.25.2",
26-
"vite": "^4.4.10",
27-
"vue-tsc": "^1.8.15"
26+
"vite": "^4.5.0",
27+
"vue-tsc": "^1.8.22"
2828
}
2929
}

playground/tsconfig.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"compilerOptions": {
33
"target": "esnext",
4-
"lib": ["esnext", "dom"],
54
"jsx": "preserve",
5+
"lib": ["esnext", "dom"],
66
"useDefineForClassFields": true,
77
"module": "esnext",
88
"moduleResolution": "bundler",
9-
"types": [],
109
"resolveJsonModule": true,
10+
"types": [],
11+
"strict": true,
1112
"sourceMap": true,
12-
"isolatedModules": true,
1313
"esModuleInterop": true,
14-
"strict": true,
14+
"isolatedModules": true,
1515
"skipLibCheck": true
1616
},
1717
"references": [{ "path": "./tsconfig.node.json" }],

0 commit comments

Comments
 (0)