This commit is contained in:
MishaBagger
2023-10-25 09:15:21 +03:00
commit b6c10cc93f
9828 changed files with 1446743 additions and 0 deletions

16
6/node_modules/jasmine-reporters/release.sh generated vendored Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/sh
VER=${1}
shift
DESC=$@
if [ -z "$DESC" ] ; then
echo ":: ERROR! Please provide a brief description of the new version"
exit 1
fi
echo :: Tagging and releasing ${VER} ::
echo ${VER} - $@
sed -i "" -E "s/\"version\":.+/\"version\": \"${VER}\",/" package.json
git add package.json
git commit -m "${VER}"
git tag ${VER} -am "${VER} - ${DESC}"