Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #678

Merged
merged 2 commits into from
Jan 12, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue-jsx-monorepo",
"private": true,
"packageManager": "pnpm@8.10.0",
"packageManager": "pnpm@8.14.1",
"scripts": {
"build": "pnpm run -r build",
"test": "vitest",
Expand All @@ -17,18 +17,18 @@
],
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@types/babel__core": "^7.20.3",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@types/babel__core": "^7.20.5",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@vitest/coverage-v8": "^0.34.6",
"bumpp": "^9.2.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"bumpp": "^9.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"jsdom": "^22.1.0",
"prettier": "^3.0.3",
"prettier": "^3.2.0",
"tsup": "^8.0.1",
"typescript": "^5.2.2",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vitest": "^0.34.6"
},
Expand Down
24 changes: 12 additions & 12 deletions packages/babel-plugin-jsx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,25 @@
],
"dependencies": {
"@babel/helper-module-imports": "^7.22.15",
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/plugin-syntax-jsx": "^7.23.3",
"@babel/template": "^7.22.15",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.23.0",
"@babel/traverse": "^7.23.7",
"@babel/types": "^7.23.6",
"@vue/babel-helper-vue-transform-on": "workspace:^",
"camelcase": "^6.3.0",
"html-tags": "^3.3.1",
"svg-tags": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@types/babel__template": "^7.4.3",
"@types/babel__traverse": "^7.20.3",
"@types/svg-tags": "^1.0.1",
"@vue/runtime-dom": "^3.3.7",
"@vue/test-utils": "^2.4.1",
"regenerator-runtime": "^0.14.0",
"vue": "^3.3.7"
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@types/babel__template": "^7.4.4",
"@types/babel__traverse": "^7.20.5",
"@types/svg-tags": "^1.0.2",
"@vue/runtime-dom": "^3.4.11",
"@vue/test-utils": "^2.4.3",
"regenerator-runtime": "^0.14.1",
"vue": "^3.4.11"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
Expand Down
16 changes: 8 additions & 8 deletions packages/babel-plugin-jsx/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ export const transformJSXMemberExpression = (
path.get('object') as NodePath<t.JSXMemberExpression>
)
: t.isJSXIdentifier(objectPath)
? t.identifier(objectPath.name)
: t.nullLiteral();
? t.identifier(objectPath.name)
: t.nullLiteral();
const transformedProperty = t.identifier(propertyPath.name);
return t.memberExpression(transformedObject, transformedProperty);
};
Expand All @@ -106,12 +106,12 @@ export const getTag = (
return name === FRAGMENT
? createIdentifier(state, FRAGMENT)
: path.scope.hasBinding(name)
? t.identifier(name)
: state.opts.isCustomElement?.(name)
? t.stringLiteral(name)
: t.callExpression(createIdentifier(state, 'resolveComponent'), [
t.stringLiteral(name),
]);
? t.identifier(name)
: state.opts.isCustomElement?.(name)
? t.stringLiteral(name)
: t.callExpression(createIdentifier(state, 'resolveComponent'), [
t.stringLiteral(name),
]);
}

return t.stringLiteral(name);
Expand Down
8 changes: 4 additions & 4 deletions packages/jsx-explorer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"preview": "vite preview"
},
"dependencies": {
"@babel/core": "^7.23.2",
"@babel/core": "^7.23.7",
"@vue/babel-plugin-jsx": "workspace:*",
"monaco-editor": "^0.44.0",
"vue": "^3.3.7"
"monaco-editor": "^0.45.0",
"vue": "^3.4.11"
},
"devDependencies": {
"vite-plugin-node-polyfills": "^0.15.0"
"vite-plugin-node-polyfills": "^0.19.0"
}
}