mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* refactor: replace yarn with pnpm * chore: install pnpm * chore: disable cache * ignore pnpm-lock.yaml * resolve deps * setup pnpm
15 lines
156 B
Bash
Executable File
15 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
pnpm bootstrap
|
|
pnpm update:version
|
|
|
|
sh scripts/build.sh
|
|
|
|
cd dist/element-plus
|
|
npm publish --access public
|
|
cd -
|
|
|
|
echo "Publish completed"
|