Skip to content

Commit 1cdd1cf

Browse files
committed
chore: rename fork
1 parent a72bc11 commit 1cdd1cf

File tree

12 files changed

+25
-25
lines changed

12 files changed

+25
-25
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"@types/babel__helper-plugin-utils": "^7.10.3",
2929
"@types/node": "^22.13.14",
3030
"@vitest/coverage-v8": "^3.1.1",
31-
"@vue/babel-plugin-jsx": "workspace:*",
31+
"@vuetify/babel-plugin-jsx": "workspace:*",
3232
"bumpp": "^10.1.0",
3333
"eslint": "^9.23.0",
3434
"eslint-config-prettier": "^10.1.1",

packages/babel-helper-vue-transform-on/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @vue/babel-helper-vue-transform-on
1+
# @vuetify/babel-helper-vue-transform-on
22

33
A package used internally by vue jsx transformer to transform events.
44

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@vue/babel-helper-vue-transform-on",
2+
"name": "@vuetify/babel-helper-vue-transform-on",
33
"version": "1.4.0",
44
"type": "commonjs",
55
"description": "to help transform on",
@@ -9,6 +9,6 @@
99
"types": "index.d.ts",
1010
"repository": {
1111
"type": "git",
12-
"url": "git+https://github.com/vuejs/babel-plugin-jsx.git"
12+
"url": "git+https://github.com/vuetifyjs/babel-plugin-jsx.git"
1313
}
1414
}

packages/babel-plugin-jsx/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ English | [简体中文](/packages/babel-plugin-jsx/README-zh_CN.md)
1212
Install the plugin with:
1313

1414
```bash
15-
npm install @vue/babel-plugin-jsx -D
15+
npm install @vuetify/babel-plugin-jsx -D
1616
```
1717

1818
Then add the plugin to your babel config:
1919

2020
```json
2121
{
22-
"plugins": ["@vue/babel-plugin-jsx"]
22+
"plugins": ["@vuetify/babel-plugin-jsx"]
2323
}
2424
```
2525

packages/babel-plugin-jsx/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@vue/babel-plugin-jsx",
2+
"name": "@vuetify/babel-plugin-jsx",
33
"version": "1.4.0",
44
"description": "Babel plugin for Vue 3 JSX",
55
"author": "Amour1688 <[email protected]>",
@@ -18,7 +18,7 @@
1818
},
1919
"repository": {
2020
"type": "git",
21-
"url": "git+https://github.com/vuejs/babel-plugin-jsx.git"
21+
"url": "git+https://github.com/vuetifyjs/babel-plugin-jsx.git"
2222
},
2323
"scripts": {
2424
"build": "tsdown",
@@ -37,8 +37,8 @@
3737
"@babel/template": "^7.27.0",
3838
"@babel/traverse": "^7.27.0",
3939
"@babel/types": "^7.27.0",
40-
"@vue/babel-helper-vue-transform-on": "workspace:*",
41-
"@vue/babel-plugin-resolve-type": "workspace:*",
40+
"@vuetify/babel-helper-vue-transform-on": "workspace:*",
41+
"@vuetify/babel-plugin-resolve-type": "workspace:*",
4242
"@vue/shared": "^3.5.13"
4343
},
4444
"devDependencies": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import _template from '@babel/template';
55
import _syntaxJsx from '@babel/plugin-syntax-jsx';
66
import { addNamed, addNamespace, isModule } from '@babel/helper-module-imports';
77
import { type NodePath, type Visitor } from '@babel/traverse';
8-
import ResolveType from '@vue/babel-plugin-resolve-type';
8+
import ResolveType from '@vuetify/babel-plugin-resolve-type';
99
import { declare } from '@babel/helper-plugin-utils';
1010
import transformVueJSX from './transform-vue-jsx';
1111
import sugarFragment from './sugar-fragment';

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type * as t from '@babel/types';
22
import type * as BabelCore from '@babel/core';
3-
import { type Options } from '@vue/babel-plugin-resolve-type';
3+
import { type Options } from '@vuetify/babel-plugin-resolve-type';
44

55
export type Slots = t.Identifier | t.ObjectExpression | null;
66

packages/babel-plugin-jsx/src/transform-vue-jsx.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ const buildProps = (path: NodePath<t.JSXElement>, state: State) => {
112112
if (!state.get('transformOn')) {
113113
state.set(
114114
'transformOn',
115-
addDefault(path, '@vue/babel-helper-vue-transform-on', {
115+
addDefault(path, '@vuetify/babel-helper-vue-transform-on', {
116116
nameHint: '_transformOn',
117117
})
118118
);

packages/babel-plugin-resolve-type/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@vue/babel-plugin-resolve-type",
2+
"name": "@vuetify/babel-plugin-resolve-type",
33
"version": "1.4.0",
44
"description": "Babel plugin for resolving Vue types.",
55
"author": "三咲智子 Kevin Deng <[email protected]>",
@@ -20,7 +20,7 @@
2020
},
2121
"repository": {
2222
"type": "git",
23-
"url": "git+https://github.com/vuejs/babel-plugin-jsx.git"
23+
"url": "git+https://github.com/vuetifyjs/babel-plugin-jsx.git"
2424
},
2525
"publishConfig": {
2626
"exports": {

packages/babel-plugin-resolve-type/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default declare<SimpleTypeResolveOptions>(({ types: t }, options) => {
2929
isCE: false,
3030
error(msg, node) {
3131
throw new Error(
32-
`[@vue/babel-plugin-resolve-type] ${msg}\n\n${filename}\n${codeFrameColumns(
32+
`[@vuetify/babel-plugin-resolve-type] ${msg}\n\n${filename}\n${codeFrameColumns(
3333
file.code,
3434
{
3535
start: {
@@ -61,7 +61,7 @@ export default declare<SimpleTypeResolveOptions>(({ types: t }, options) => {
6161
CallExpression(path) {
6262
if (!ctx) {
6363
throw new Error(
64-
'[@vue/babel-plugin-resolve-type] context is not loaded.'
64+
'[@vuetify/babel-plugin-resolve-type] context is not loaded.'
6565
);
6666
}
6767

0 commit comments

Comments
 (0)