mirror of https://github.com/vector-im/riot-web
Add auto-upgrade support for SDK deps
This automates the SDK upgrade step of the release process.pull/12374/head
parent
aa95dcc0cb
commit
a26bd6ef94
17
release.sh
17
release.sh
|
@ -24,14 +24,23 @@ do
|
||||||
latestver=`yarn info -s $i dist-tags.next`
|
latestver=`yarn info -s $i dist-tags.next`
|
||||||
if [ "$depver" != "$latestver" ]
|
if [ "$depver" != "$latestver" ]
|
||||||
then
|
then
|
||||||
echo "The latest version of $i is $latestver but package.json depends on $depver"
|
echo "The latest version of $i is $latestver but package.json depends on $depver."
|
||||||
echo -n "Type 'Yes' to continue anyway: "
|
echo -n "Type 'u' to auto-upgrade, 'c' to continue anyway, or 'a' to abort:"
|
||||||
read resp
|
read resp
|
||||||
if [ "$resp" != "Yes" ]
|
if [ "$resp" != "u" ] && [ "$resp" != "c" ]
|
||||||
then
|
then
|
||||||
echo "OK, never mind."
|
echo "Aborting."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
if [ "$resp" == "u" ]
|
||||||
|
then
|
||||||
|
echo "Upgrading $i to $latestver..."
|
||||||
|
yarn add -E $i@$latestver
|
||||||
|
git add -u
|
||||||
|
# The `-e` flag opens the editor and gives you a chance to check
|
||||||
|
# the upgrade for correctness.
|
||||||
|
git commit -m "Upgrade $i to $latestver" -e
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue