mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-21 02:50:11 +08:00
15 lines
156 B
Bash
Executable File
15 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
yarn bootstrap
|
|
yarn update:version
|
|
|
|
sh scripts/build.sh
|
|
|
|
cd dist/element-plus
|
|
npm publish --access public
|
|
cd -
|
|
|
|
echo "Publish completed"
|