We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abcdeb0 commit 7ffb0d0Copy full SHA for 7ffb0d0
.github/workflows/release.yaml
@@ -44,8 +44,10 @@ jobs:
44
echo "esbuild version:"
45
pnpm exec esbuild --version || echo "esbuild not found in root"
46
cd packages/core && pnpm exec esbuild --version || echo "esbuild not found in core"
47
- # 构建项目
48
- pnpm build:core
+ # 构建项目 - 只构建 core 包
+ # 进入 core 包目录直接执行构建
49
+ cd packages/core
50
+ pnpm build
51
52
- name: Create Release Pull Request
53
id: create_release
packages/core/package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "vue-element-plus-x",
3
"type": "module",
4
- "version": "1.3.82",
+ "version": "1.3.83",
5
"license": "MIT",
6
"homepage": "https://element-plus-x.com",
7
"repository": {
0 commit comments