From 8978b4fa5c65ca1c0ecd0eb3869868c3f52605ec Mon Sep 17 00:00:00 2001 From: ajaxzheng <894103554@qq.com> Date: Fri, 15 Aug 2025 14:09:18 +0800 Subject: [PATCH 1/6] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=8F=91=E5=B8=83?= =?UTF-8?q?=E8=84=9A=E6=9C=AC=E4=B8=AD=E7=9A=84=E8=B7=AF=E5=BE=84=E9=94=99?= =?UTF-8?q?=E8=AF=AF=EF=BC=8C=E5=B0=86mobile/dist=E6=9B=B4=E6=94=B9?= =?UTF-8?q?=E4=B8=BAtheme-mobile/dist?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dispatch-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dispatch-publish.yml b/.github/workflows/dispatch-publish.yml index 28f755a..962a5b5 100644 --- a/.github/workflows/dispatch-publish.yml +++ b/.github/workflows/dispatch-publish.yml @@ -72,7 +72,7 @@ jobs: - name: Publish components run: | pnpm --filter @opentiny/vue-mobile publish --tag ${{ inputs.tag }} --access=public --no-git-checks - pnpm -C packages/mobile/dist publish --tag ${{ inputs.tag }} --access=public --no-git-checks + pnpm -C packages/theme-mobile/dist publish --tag ${{ inputs.tag }} --access=public --no-git-checks env: # 使用NPM令牌进行身份验证 NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} From 77c42a93f7e90b8436e0754b1a5b385c3ab400cf Mon Sep 17 00:00:00 2001 From: ajaxzheng <894103554@qq.com> Date: Fri, 15 Aug 2025 14:13:58 +0800 Subject: [PATCH 2/6] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=8F=91=E5=B8=83?= =?UTF-8?q?=E8=84=9A=E6=9C=AC=E4=B8=AD=E7=9A=84=E8=B7=AF=E5=BE=84=E9=94=99?= =?UTF-8?q?=E8=AF=AF=EF=BC=8C=E5=B0=86pub:theme=E5=91=BD=E4=BB=A4=E4=B8=AD?= =?UTF-8?q?=E7=9A=84mobile/dist=E6=9B=B4=E6=94=B9=E4=B8=BAtheme-mobile/dis?= =?UTF-8?q?t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1747c8d..ea620be 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "build": "pnpm -C packages/mobile build", "pub": "pnpm -C packages/mobile publish --no-git-checks --access=public", "build:theme": "pnpm -C packages/theme-mobile build:fast", - "pub:theme": "pnpm -C packages/mobile/dist publish --no-git-checks --access=public" + "pub:theme": "pnpm -C packages/theme-mobile/dist publish --no-git-checks --access=public" }, "dependencies": { "@vue/composition-api": "1.7.2", From 86963449e7952354c814b615b09e2f514be6a565 Mon Sep 17 00:00:00 2001 From: ajaxzheng <894103554@qq.com> Date: Fri, 15 Aug 2025 14:14:32 +0800 Subject: [PATCH 3/6] =?UTF-8?q?chore:=20=E5=8D=87=E7=BA=A7=E7=89=88?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/mobile/package.json | 2 +- packages/theme-mobile/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/mobile/package.json b/packages/mobile/package.json index 7cbfe1c..2ee5e1a 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -1,7 +1,7 @@ { "name": "@opentiny/vue-mobile", "type": "module", - "version": "1.0.0-alpha.7", + "version": "1.0.0-alpha.8", "description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.", "author": "OpenTiny Team", "license": "MIT", diff --git a/packages/theme-mobile/package.json b/packages/theme-mobile/package.json index 567171e..0e9f841 100644 --- a/packages/theme-mobile/package.json +++ b/packages/theme-mobile/package.json @@ -1,6 +1,6 @@ { "name": "@opentiny/vue-theme-mobile", - "version": "1.0.0-alpha.7", + "version": "1.0.0-alpha.8", "description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.", "homepage": "https://opentiny.design/tiny-vue", "main": "index.css", From 71bfc9a30c6979a7a54c38554b4163fb78b58723 Mon Sep 17 00:00:00 2001 From: ajaxzheng <894103554@qq.com> Date: Fri, 15 Aug 2025 14:20:25 +0800 Subject: [PATCH 4/6] =?UTF-8?q?chore:=20=E6=B5=8B=E8=AF=95=E5=8F=91?= =?UTF-8?q?=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dispatch-publish.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/dispatch-publish.yml b/.github/workflows/dispatch-publish.yml index 962a5b5..96504d4 100644 --- a/.github/workflows/dispatch-publish.yml +++ b/.github/workflows/dispatch-publish.yml @@ -71,7 +71,6 @@ jobs: # 步骤8: 发布组件到NPM - name: Publish components run: | - pnpm --filter @opentiny/vue-mobile publish --tag ${{ inputs.tag }} --access=public --no-git-checks pnpm -C packages/theme-mobile/dist publish --tag ${{ inputs.tag }} --access=public --no-git-checks env: # 使用NPM令牌进行身份验证 From 86ca691946102bea1c0574f8476ff6af0521462a Mon Sep 17 00:00:00 2001 From: ajaxzheng <894103554@qq.com> Date: Fri, 15 Aug 2025 14:35:04 +0800 Subject: [PATCH 5/6] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=E5=8F=91?= =?UTF-8?q?=E5=B8=83=E5=91=BD=E4=BB=A4=EF=BC=8C=E7=AE=80=E5=8C=96=E4=B8=BB?= =?UTF-8?q?=E9=A2=98=E5=8C=85=E7=9A=84=E5=8F=91=E5=B8=83=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dispatch-publish.yml | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dispatch-publish.yml b/.github/workflows/dispatch-publish.yml index 96504d4..26ad927 100644 --- a/.github/workflows/dispatch-publish.yml +++ b/.github/workflows/dispatch-publish.yml @@ -71,7 +71,8 @@ jobs: # 步骤8: 发布组件到NPM - name: Publish components run: | - pnpm -C packages/theme-mobile/dist publish --tag ${{ inputs.tag }} --access=public --no-git-checks + pnpm pub --tag ${{ inputs.tag }} + pnpm pub:theme --tag ${{ inputs.tag }} env: # 使用NPM令牌进行身份验证 NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/package.json b/package.json index ea620be..f304dd1 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "build": "pnpm -C packages/mobile build", "pub": "pnpm -C packages/mobile publish --no-git-checks --access=public", "build:theme": "pnpm -C packages/theme-mobile build:fast", - "pub:theme": "pnpm -C packages/theme-mobile/dist publish --no-git-checks --access=public" + "pub:theme": "pnpm --filter=\"./packages/theme-mobile/dist\" publish --access=public --no-git-checks" }, "dependencies": { "@vue/composition-api": "1.7.2", From bc8f56d9f1b0edb2dc2bef3539e66ba12459287b Mon Sep 17 00:00:00 2001 From: ajaxzheng <894103554@qq.com> Date: Fri, 15 Aug 2025 14:37:59 +0800 Subject: [PATCH 6/6] =?UTF-8?q?chore:=20=E5=8D=87=E7=BA=A7=E7=89=88?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- packages/mobile/package.json | 2 +- packages/theme-mobile/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index f304dd1..77280c1 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "dev": "pnpm -C sites start:mobile", "preSite": "node ./script/preSite.js", "build": "pnpm -C packages/mobile build", - "pub": "pnpm -C packages/mobile publish --no-git-checks --access=public", + "pub": "pnpm --filter=@opentiny/vue-mobile publish --no-git-checks --access=public", "build:theme": "pnpm -C packages/theme-mobile build:fast", "pub:theme": "pnpm --filter=\"./packages/theme-mobile/dist\" publish --access=public --no-git-checks" }, diff --git a/packages/mobile/package.json b/packages/mobile/package.json index 2ee5e1a..ea58309 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -1,7 +1,7 @@ { "name": "@opentiny/vue-mobile", "type": "module", - "version": "1.0.0-alpha.8", + "version": "1.0.0-alpha.9", "description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.", "author": "OpenTiny Team", "license": "MIT", diff --git a/packages/theme-mobile/package.json b/packages/theme-mobile/package.json index 0e9f841..c4473e5 100644 --- a/packages/theme-mobile/package.json +++ b/packages/theme-mobile/package.json @@ -1,6 +1,6 @@ { "name": "@opentiny/vue-theme-mobile", - "version": "1.0.0-alpha.8", + "version": "1.0.0-alpha.9", "description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.", "homepage": "https://opentiny.design/tiny-vue", "main": "index.css",