mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
139e79b29d
- Fix release script error copying node_modules
17 lines
251 B
Bash
Executable File
17 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
pnpm bootstrap
|
|
pnpm update:version
|
|
|
|
sh scripts/build.sh
|
|
|
|
find dist/element-plus/packages -type d -name node_modules -print0 | xargs -0 -I {} rm -rf {}
|
|
|
|
cd dist/element-plus
|
|
npm publish --access public
|
|
cd -
|
|
|
|
echo "Publish completed"
|