mirror of
https://github.com/primer/css.git
synced 2024-11-30 11:17:05 +03:00
13 lines
306 B
Plaintext
13 lines
306 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
# pwd
|
||
|
package=$(jq .name package.json)
|
||
|
version=$(jq .version package.json)
|
||
|
published=$(npm info "$package@$version")
|
||
|
if [[ "$version" = "$published" ]]; then
|
||
|
echo "⚠️ $package@$version is already published!"
|
||
|
else
|
||
|
echo "📦 npm publish: $package@$version"
|
||
|
npm publish $@
|
||
|
fi
|