File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff 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 : |
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
Original file line number Diff line number Diff line change 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" : {
You can’t perform that action at this time.
0 commit comments