mirror of
https://github.com/element-plus/element-plus.git
synced 2025-03-01 15:35:51 +08:00
14 lines
141 B
Bash
14 lines
141 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
yarn update:version
|
||
|
|
||
|
sh scripts/build.sh
|
||
|
|
||
|
cd dist/element-plus
|
||
|
npm publish --access public
|
||
|
cd -
|
||
|
|
||
|
echo "Publish completed"
|