element-plus/scripts/publish.sh
2021-09-15 02:06:13 +08:00

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"