1
Fork 0
npm2git/npm2git.sh

43 lines
1.3 KiB
Bash
Raw Normal View History

2018-10-03 21:50:00 -04:00
# bail on failures
set -e
# go to root of repository
cd $(git rev-parse --show-toplevel)
# get commit id
2018-10-04 11:24:42 -04:00
ORIG_COMMIT="$(git rev-parse HEAD)"
# extract package name and version from package.json, remove scripts.prepare
ORIG_PKG="$(cat package.json)"
2018-10-04 11:24:42 -04:00
read PKG_NAME PKG_VERSION < <(node -e '
2018-10-04 10:48:02 -04:00
const fs = require("fs");
const pkg = JSON.parse(fs.readFileSync("package.json"));
if (pkg.scripts && pkg.scripts.prepare) {
delete pkg.scripts.prepare;
fs.writeFileSync("package.json", JSON.stringify(pkg, null, "\t") + "\n");
}
console.log(pkg.name + " " + pkg.version);
2018-10-04 06:24:50 -04:00
')
2018-10-03 21:50:00 -04:00
# determine current branch name, and create new temporary branch
ORIG_BRANCH=$(git symbolic-ref --short HEAD)
2018-10-04 11:24:42 -04:00
TEMP_BRANCH=RELEASE_${PKG_VERSION}_$(date +'%Y%m%d%H%M%S')
git add .
git checkout --orphan=${TEMP_BRANCH}
2018-10-03 21:50:00 -04:00
# untrack all files, and track the files that should be included in the published package
git rm --cached -r .
npm pack
2018-10-04 11:24:42 -04:00
git add -f $(tar tf ${PKG_NAME}-${PKG_VERSION}.tgz | cut -c 9-)
rm ${PKG_NAME}-${PKG_VERSION}.tgz
2018-10-03 21:50:00 -04:00
2018-10-04 06:23:32 -04:00
# commit and tag
2018-10-04 11:24:42 -04:00
git commit -m "v${PKG_VERSION} @ ${ORIG_COMMIT}"
git tag v${PKG_VERSION} -a -m "v${PKG_VERSION} @ ${ORIG_COMMIT}"
2018-10-03 21:50:00 -04:00
# return to original state
git reset ${ORIG_BRANCH}
git checkout ${ORIG_BRANCH}
2018-10-04 06:24:50 -04:00
cat <<< "${ORIG_PKG}" > package.json
2018-10-03 21:50:00 -04:00
git branch -D ${TEMP_BRANCH}