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