Skip to content

Commit

Permalink
feat: resolve TS type (#664)
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Jan 21, 2024
1 parent edf7cb1 commit 3f8f4bb
Show file tree
Hide file tree
Showing 20 changed files with 924 additions and 174 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -34,6 +34,9 @@ jobs:
- name: Install deps
run: pnpm install

- name: Build
run: pnpm run build

- name: Test unit
run: pnpm run test

Expand Down
8 changes: 6 additions & 2 deletions package.json
@@ -1,5 +1,6 @@
{
"name": "vue-jsx-monorepo",
"version": "1.2.0-alpha.0",
"private": true,
"packageManager": "pnpm@8.14.1",
"type": "module",
Expand All @@ -17,11 +18,15 @@
"jsx"
],
"devDependencies": {
"@babel/plugin-syntax-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.4",
"@types/babel__core": "^7.20.5",
"@types/babel__helper-module-imports": "^7.18.0",
"@types/babel__helper-plugin-utils": "^7.10.1",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@vitest/coverage-v8": "^1.2.1",
"@vue/babel-plugin-jsx": "workspace:*",
"bumpp": "^9.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
Expand All @@ -32,6 +37,5 @@
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.1"
},
"version": "1.1.6"
}
}
2 changes: 1 addition & 1 deletion packages/babel-helper-vue-transform-on/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/babel-helper-vue-transform-on",
"version": "1.1.6",
"version": "1.2.0-alpha.0",
"description": "to help transform on",
"author": "Amour1688 <lcz_1996@foxmail.com>",
"license": "MIT",
Expand Down
6 changes: 4 additions & 2 deletions packages/babel-plugin-jsx/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/babel-plugin-jsx",
"version": "1.1.6",
"version": "1.2.0-alpha.0",
"description": "Babel plugin for Vue 3 JSX",
"author": "Amour1688 <lcz_1996@foxmail.com>",
"homepage": "https://github.com/vuejs/babel-plugin-jsx/tree/dev/packages/babel-plugin-jsx#readme",
Expand All @@ -24,11 +24,13 @@
],
"dependencies": {
"@babel/helper-module-imports": "^7.22.15",
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/plugin-syntax-jsx": "^7.23.3",
"@babel/template": "^7.22.15",
"@babel/traverse": "^7.23.7",
"@babel/types": "^7.23.6",
"@vue/babel-helper-vue-transform-on": "workspace:^",
"@vue/babel-helper-vue-transform-on": "workspace:*",
"@vue/babel-plugin-resolve-type": "workspace:*",
"camelcase": "^6.3.0",
"html-tags": "^3.3.1",
"svg-tags": "^1.0.0"
Expand Down

0 comments on commit 3f8f4bb

Please sign in to comment.