Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "vue-jsx-monorepo",
"version": "1.2.0-alpha.0",
"private": true,
"packageManager": "[email protected]",
"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
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"license": "MIT",
Expand Down
6 changes: 4 additions & 2 deletions packages/babel-plugin-jsx/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"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
Loading