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