88 lines
3 KiB
Bash
Executable file
88 lines
3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e # exit when error
|
|
|
|
if [[ -n $(npm owner add `npm whoami`) ]]; then
|
|
printf "Beta release: Not an owner of the npm repo, ask for it"
|
|
exit 1
|
|
fi
|
|
|
|
currentBranch=`git rev-parse --abbrev-ref HEAD`
|
|
if [ $currentBranch != 'develop' ]; then
|
|
printf "Beta release: You must be on develop"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -n $(git status --porcelain) ]]; then
|
|
printf "Beta release: Working tree is not clean (git status)"
|
|
exit 1
|
|
fi
|
|
|
|
printf "\n\nBeta release: update working tree"
|
|
git pull origin develop
|
|
git fetch origin --tags
|
|
|
|
printf "Beta release: npm install"
|
|
npm install
|
|
|
|
currentVersion=`cat package.json | json version`
|
|
|
|
# if not on a beta version already
|
|
if [[ $currentVersion != *"-beta"* || $CHOOSE_BUMP ]]
|
|
then
|
|
# header
|
|
printf "\n\nBeta release: current version is $currentVersion"
|
|
printf "\nBeta release: a changelog will be generated only if a fix/feat/performance/breaking token is found in git log"
|
|
printf "\nBeta release: you must choose a new ve.rs.ion (semver)"
|
|
printf "\nBeta release: press q to exit the next screen\n\n"
|
|
|
|
# preview changelog
|
|
read -p "=> Beta release: press [ENTER] to view changes since latest version.."
|
|
|
|
# nd (markdown renderer in terminal)
|
|
# has some output going on to stderr because of node v4, no big deal
|
|
conventional-changelog -p angular | nd | less -r 2>/dev/null
|
|
|
|
# choose and bump new version
|
|
# printf "\n\nBeta release: Please enter the new chosen version > "
|
|
printf "\n=> Beta release: please type the new chosen version (-beta will be automatically appended) > "
|
|
read -e newVersion
|
|
newVersion="$newVersion-beta.0"
|
|
else
|
|
# when already on a beta version, let's bump the beta-.X
|
|
newVersion=`semver ${currentVersion} -i prerelease -preid beta`
|
|
|
|
read -p "
|
|
=> Beta release: The new version will be ${newVersion},
|
|
press [ENTER] to continue, CTRL+C to abort.
|
|
You can force specifying a different bump by using CHOOSE_BUMP=1 npm run release-beta"
|
|
fi
|
|
|
|
VERSION=$newVersion babel-node ./scripts/bump-package-version.js
|
|
|
|
# build new version
|
|
NODE_ENV=production VERSION=$newVersion npm run build
|
|
|
|
# regenerate readme TOC
|
|
printf "\n\nBeta release: generate TOCS"
|
|
npm run doctoc
|
|
|
|
# add a timestamp fake file to dist/ to avoid having beta released published to jsdelivr automatically
|
|
# https://github.com/jsdelivr/jsdelivr/pull/8107#issuecomment-159562676
|
|
# You will have to close the open PR afterwards
|
|
timestamp=$(date "+%Y.%m.%d-%H.%M.%S")
|
|
tmpfile="dist/avoid-jsdelivr-beta-publish-$timestamp"
|
|
touch $tmpfile
|
|
|
|
# git add and tag
|
|
commitMessage="v$newVersion\n\n$changelog"
|
|
git add src/lib/version.js npm-shrinkwrap.json package.json CHANGELOG.md CONTRIBUTING.md README.md
|
|
printf "$commitMessage" | git commit --file -
|
|
|
|
printf "\n\nBeta release: almost done, check everything in another terminal tab.\n"
|
|
read -p "=> Beta release: when ready, press [ENTER] to push to github and publish the package to the beta channel"
|
|
|
|
printf "\n\nBeta release: push to github, publish on npm"
|
|
git push origin develop
|
|
npm publish --tag beta
|
|
rm $tmpfile
|