Skip to content

Commit fb13429

Browse files
committed
feat: 合并部分pr请求
1 parent a87b696 commit fb13429

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
npm i -g pnpm
32-
# 清理 esbuild 和 npm 缓存以解决版本冲突
32+
# 清理缓存以解决版本冲突
3333
rm -rf ~/.npm/_cacache
3434
rm -rf node_modules/.cache
3535
rm -rf packages/core/node_modules
3636
# 清理 pnpm store
3737
pnpm store prune || true
38-
# 重新安装依赖,不使用 frozen-lockfile 因为 package.json 已经更新
39-
pnpm install --force
38+
# 重新安装依赖,使用 --ignore-scripts 避免执行可能出问题的脚本
39+
pnpm install --force --ignore-scripts
4040
4141
- name: Build
4242
run: |
@@ -45,8 +45,8 @@ jobs:
4545
pnpm exec esbuild --version || echo "esbuild not found in root"
4646
(cd packages/core && pnpm exec esbuild --version) || echo "esbuild not found in core"
4747
# 构建项目 - 只构建 core 包
48-
# 使用子shell确保在正确的目录执行
49-
(cd packages/core && pnpm build)
48+
# 跳过 update:plugin 步骤,避免 esbuild 版本冲突
49+
(cd packages/core && pnpm run aeac && pnpm run build:es && pnpm run build:umd)
5050
5151
- name: Create Release Pull Request
5252
id: create_release

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-element-plus-x",
33
"type": "module",
4-
"version": "1.3.84",
4+
"version": "1.3.85",
55
"license": "MIT",
66
"homepage": "https://element-plus-x.com",
77
"repository": {

0 commit comments

Comments
 (0)