mirror of
https://github.com/primer/css.git
synced 2024-11-30 11:17:05 +03:00
15 lines
251 B
Plaintext
15 lines
251 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
if [[ $# -lt 1 ]]; then
|
||
|
echo "You must provide a version!"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
version=$1
|
||
|
module=${2:-primer-css}
|
||
|
|
||
|
cd modules/$module
|
||
|
echo "${module}@$(jq -r .version package.json) => ${version}"
|
||
|
npm version --no-git ${@:1} > /dev/null
|