element-plus/scripts/publish.sh

10 lines
463 B
Bash
Raw Normal View History

#! /usr/bin/bash
# Do not run this file without setting the environment variables, you will end up fatal error
# If you wish to run this locally, please change the env variable before running this.
2020-12-24 00:31:14 +08:00
echo "//${REGISTRY}/:_authToken=${TOKEN}" > .npmrc
2020-12-23 22:50:04 +08:00
cat package.json | grep -v '"private":' | grep -v '"version":' | sed "s/\(\"name\": \"element-plus\"\)/\1,\n \"version\": \"${TAG_VERSION}\"/g" > package.json.bak
cat package.json.bak > package.json
2020-12-24 01:16:08 +08:00
npm publish