mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
24 lines
252 B
Bash
Executable File
24 lines
252 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
pnpm i --frozen-lockfile
|
|
pnpm update:version
|
|
|
|
pnpm build
|
|
|
|
cd dist/element-plus
|
|
npm publish --provenance
|
|
cd -
|
|
|
|
cd internal/eslint-config
|
|
npm publish
|
|
cd -
|
|
|
|
cd internal/metadata
|
|
pnpm build
|
|
npm publish
|
|
cd -
|
|
|
|
echo "✅ Publish completed"
|