Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmark/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ for (const code of codes) {
transformJsxToString(`jsxToString(${code})`, {
debug: true,
plugins: ['jsx'],
})
}),
)
}

Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "unplugin-jsx-string",
"version": "0.7.1",
"packageManager": "pnpm@8.8.0",
"packageManager": "pnpm@8.10.5",
"description": "Converts JSX to HTML strings at compile time.",
"keywords": [
"unplugin",
Expand Down Expand Up @@ -101,32 +101,32 @@
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@babel/parser": "^7.23.0",
"@babel/types": "^7.23.0",
"@rollup/pluginutils": "^5.0.4",
"@babel/parser": "^7.23.3",
"@babel/types": "^7.23.3",
"@rollup/pluginutils": "^5.0.5",
"entities": "^4.5.0",
"estree-walker": "^3.0.3",
"jsesc": "^3.0.2",
"magic-string": "^0.30.4",
"unplugin": "^1.5.0"
"magic-string": "^0.30.5",
"unplugin": "^1.5.1"
},
"devDependencies": {
"@sxzz/eslint-config": "^3.6.1",
"@sxzz/eslint-config": "^3.7.4",
"@sxzz/prettier-config": "^2.0.0",
"@types/benchmark": "^2.1.3",
"@types/jsesc": "^3.0.1",
"@types/node": "^20.8.2",
"@types/react": "^18.2.25",
"@types/benchmark": "^2.1.5",
"@types/jsesc": "^3.0.3",
"@types/node": "^20.9.2",
"@types/react": "^18.2.37",
"benchmark": "^2.1.4",
"bumpp": "^9.2.0",
"eslint": "^8.50.0",
"eslint-define-config": "^1.23.0",
"fast-glob": "^3.3.1",
"prettier": "^3.0.3",
"eslint": "^8.54.0",
"eslint-define-config": "^1.24.1",
"fast-glob": "^3.3.2",
"prettier": "^3.1.0",
"tsup": "^7.2.0",
"tsx": "^4.1.1",
"tsx": "^4.1.4",
"typescript": "^5.2.2",
"vite": "^4.4.10",
"vite": "^4.5.0",
"vitest": "^0.34.6"
},
"engines": {
Expand Down
20 changes: 10 additions & 10 deletions playground/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "unplugin-jsx-string-playground",
"version": "0.0.0",
"packageManager": "pnpm@8.8.0",
"packageManager": "pnpm@8.10.5",
"license": "MIT",
"author": "三咲智子 <[email protected]>",
"scripts": {
Expand All @@ -11,19 +11,19 @@
"vercel-build": "pnpm run -C .. build && pnpm build"
},
"dependencies": {
"@unocss/reset": "^0.56.5",
"@vueuse/core": "^10.4.1",
"@unocss/reset": "^0.57.6",
"@vueuse/core": "^10.6.1",
"unplugin-jsx-string": "workspace:*",
"vue": "^3.3.4"
"vue": "^3.3.8"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.21",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/runtime-core": "^3.3.4",
"unocss": "^0.56.5",
"unplugin-auto-import": "^0.16.6",
"@vitejs/plugin-vue": "^4.5.0",
"@vue/runtime-core": "^3.3.8",
"unocss": "^0.57.6",
"unplugin-auto-import": "^0.16.7",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.4.10",
"vue-tsc": "^1.8.15"
"vite": "^4.5.0",
"vue-tsc": "^1.8.22"
}
}
8 changes: 4 additions & 4 deletions playground/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"compilerOptions": {
"target": "esnext",
"lib": ["esnext", "dom"],
"jsx": "preserve",
"lib": ["esnext", "dom"],
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "bundler",
"types": [],
"resolveJsonModule": true,
"types": [],
"strict": true,
"sourceMap": true,
"isolatedModules": true,
"esModuleInterop": true,
"strict": true,
"isolatedModules": true,
"skipLibCheck": true
},
"references": [{ "path": "./tsconfig.node.json" }],
Expand Down
Loading