Skip to content

Commit 3f8f4bb

Browse files
authored
feat: resolve TS type (#664)
1 parent edf7cb1 commit 3f8f4bb

File tree

20 files changed

+924
-174
lines changed

20 files changed

+924
-174
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ jobs:
3434
- name: Install deps
3535
run: pnpm install
3636

37+
- name: Build
38+
run: pnpm run build
39+
3740
- name: Test unit
3841
run: pnpm run test
3942

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "vue-jsx-monorepo",
3+
"version": "1.2.0-alpha.0",
34
"private": true,
45
"packageManager": "[email protected]",
56
"type": "module",
@@ -17,11 +18,15 @@
1718
"jsx"
1819
],
1920
"devDependencies": {
21+
"@babel/plugin-syntax-typescript": "^7.22.5",
2022
"@rollup/plugin-babel": "^6.0.4",
2123
"@types/babel__core": "^7.20.5",
24+
"@types/babel__helper-module-imports": "^7.18.0",
25+
"@types/babel__helper-plugin-utils": "^7.10.1",
2226
"@types/node": "^20.11.5",
2327
"@typescript-eslint/eslint-plugin": "^6.19.0",
2428
"@vitest/coverage-v8": "^1.2.1",
29+
"@vue/babel-plugin-jsx": "workspace:*",
2530
"bumpp": "^9.3.0",
2631
"eslint": "^8.56.0",
2732
"eslint-config-prettier": "^9.1.0",
@@ -32,6 +37,5 @@
3237
"typescript": "^5.3.3",
3338
"vite": "^5.0.12",
3439
"vitest": "^1.2.1"
35-
},
36-
"version": "1.1.6"
40+
}
3741
}

packages/babel-helper-vue-transform-on/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/babel-helper-vue-transform-on",
3-
"version": "1.1.6",
3+
"version": "1.2.0-alpha.0",
44
"description": "to help transform on",
55
"author": "Amour1688 <[email protected]>",
66
"license": "MIT",

packages/babel-plugin-jsx/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/babel-plugin-jsx",
3-
"version": "1.1.6",
3+
"version": "1.2.0-alpha.0",
44
"description": "Babel plugin for Vue 3 JSX",
55
"author": "Amour1688 <[email protected]>",
66
"homepage": "https://github.com/vuejs/babel-plugin-jsx/tree/dev/packages/babel-plugin-jsx#readme",
@@ -24,11 +24,13 @@
2424
],
2525
"dependencies": {
2626
"@babel/helper-module-imports": "^7.22.15",
27+
"@babel/helper-plugin-utils": "^7.22.5",
2728
"@babel/plugin-syntax-jsx": "^7.23.3",
2829
"@babel/template": "^7.22.15",
2930
"@babel/traverse": "^7.23.7",
3031
"@babel/types": "^7.23.6",
31-
"@vue/babel-helper-vue-transform-on": "workspace:^",
32+
"@vue/babel-helper-vue-transform-on": "workspace:*",
33+
"@vue/babel-plugin-resolve-type": "workspace:*",
3234
"camelcase": "^6.3.0",
3335
"html-tags": "^3.3.1",
3436
"svg-tags": "^1.0.0"

0 commit comments

Comments
 (0)