Skip to content

Commit 436868d

Browse files
renovate[bot]sxzz
andauthored
chore(deps): update all non-major dependencies (#678)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
1 parent 6294745 commit 436868d

File tree

5 files changed

+765
-943
lines changed

5 files changed

+765
-943
lines changed

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-jsx-monorepo",
33
"private": true,
4-
"packageManager": "pnpm@8.10.0",
4+
"packageManager": "pnpm@8.14.1",
55
"scripts": {
66
"build": "pnpm run -r build",
77
"test": "vitest",
@@ -17,18 +17,18 @@
1717
],
1818
"devDependencies": {
1919
"@rollup/plugin-babel": "^6.0.4",
20-
"@types/babel__core": "^7.20.3",
21-
"@types/node": "^20.8.9",
22-
"@typescript-eslint/eslint-plugin": "^6.9.0",
20+
"@types/babel__core": "^7.20.5",
21+
"@types/node": "^20.11.0",
22+
"@typescript-eslint/eslint-plugin": "^6.18.1",
2323
"@vitest/coverage-v8": "^0.34.6",
24-
"bumpp": "^9.2.0",
25-
"eslint": "^8.52.0",
26-
"eslint-config-prettier": "^9.0.0",
27-
"eslint-plugin-import": "^2.29.0",
24+
"bumpp": "^9.2.1",
25+
"eslint": "^8.56.0",
26+
"eslint-config-prettier": "^9.1.0",
27+
"eslint-plugin-import": "^2.29.1",
2828
"jsdom": "^22.1.0",
29-
"prettier": "^3.0.3",
29+
"prettier": "^3.2.0",
3030
"tsup": "^8.0.1",
31-
"typescript": "^5.2.2",
31+
"typescript": "^5.3.3",
3232
"vite": "^5.0.11",
3333
"vitest": "^0.34.6"
3434
},

packages/babel-plugin-jsx/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@
2424
],
2525
"dependencies": {
2626
"@babel/helper-module-imports": "^7.22.15",
27-
"@babel/plugin-syntax-jsx": "^7.22.5",
27+
"@babel/plugin-syntax-jsx": "^7.23.3",
2828
"@babel/template": "^7.22.15",
29-
"@babel/traverse": "^7.23.2",
30-
"@babel/types": "^7.23.0",
29+
"@babel/traverse": "^7.23.7",
30+
"@babel/types": "^7.23.6",
3131
"@vue/babel-helper-vue-transform-on": "workspace:^",
3232
"camelcase": "^6.3.0",
3333
"html-tags": "^3.3.1",
3434
"svg-tags": "^1.0.0"
3535
},
3636
"devDependencies": {
37-
"@babel/core": "^7.23.2",
38-
"@babel/preset-env": "^7.23.2",
39-
"@types/babel__template": "^7.4.3",
40-
"@types/babel__traverse": "^7.20.3",
41-
"@types/svg-tags": "^1.0.1",
42-
"@vue/runtime-dom": "^3.3.7",
43-
"@vue/test-utils": "^2.4.1",
44-
"regenerator-runtime": "^0.14.0",
45-
"vue": "^3.3.7"
37+
"@babel/core": "^7.23.7",
38+
"@babel/preset-env": "^7.23.8",
39+
"@types/babel__template": "^7.4.4",
40+
"@types/babel__traverse": "^7.20.5",
41+
"@types/svg-tags": "^1.0.2",
42+
"@vue/runtime-dom": "^3.4.11",
43+
"@vue/test-utils": "^2.4.3",
44+
"regenerator-runtime": "^0.14.1",
45+
"vue": "^3.4.11"
4646
},
4747
"peerDependencies": {
4848
"@babel/core": "^7.0.0-0"

packages/babel-plugin-jsx/src/utils.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ export const transformJSXMemberExpression = (
8080
path.get('object') as NodePath<t.JSXMemberExpression>
8181
)
8282
: t.isJSXIdentifier(objectPath)
83-
? t.identifier(objectPath.name)
84-
: t.nullLiteral();
83+
? t.identifier(objectPath.name)
84+
: t.nullLiteral();
8585
const transformedProperty = t.identifier(propertyPath.name);
8686
return t.memberExpression(transformedObject, transformedProperty);
8787
};
@@ -106,12 +106,12 @@ export const getTag = (
106106
return name === FRAGMENT
107107
? createIdentifier(state, FRAGMENT)
108108
: path.scope.hasBinding(name)
109-
? t.identifier(name)
110-
: state.opts.isCustomElement?.(name)
111-
? t.stringLiteral(name)
112-
: t.callExpression(createIdentifier(state, 'resolveComponent'), [
113-
t.stringLiteral(name),
114-
]);
109+
? t.identifier(name)
110+
: state.opts.isCustomElement?.(name)
111+
? t.stringLiteral(name)
112+
: t.callExpression(createIdentifier(state, 'resolveComponent'), [
113+
t.stringLiteral(name),
114+
]);
115115
}
116116

117117
return t.stringLiteral(name);

packages/jsx-explorer/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@babel/core": "^7.23.2",
12+
"@babel/core": "^7.23.7",
1313
"@vue/babel-plugin-jsx": "workspace:*",
14-
"monaco-editor": "^0.44.0",
15-
"vue": "^3.3.7"
14+
"monaco-editor": "^0.45.0",
15+
"vue": "^3.4.11"
1616
},
1717
"devDependencies": {
18-
"vite-plugin-node-polyfills": "^0.15.0"
18+
"vite-plugin-node-polyfills": "^0.19.0"
1919
}
2020
}

0 commit comments

Comments
 (0)