schildi-web/scripts/package.sh

38 lines
958 B
Bash
Raw Normal View History

#!/bin/bash
set -e
name=$(grep '"name"' package.json | head -n 1 | sed 's|.*: \"\(.*\)\",|\1|')
if [ -n "$DIST_VERSION" ]; then
version=$DIST_VERSION
2016-11-02 07:38:11 -04:00
else
version=$(grep version package.json | sed 's|.*: \"\(.*\)\",|\1|')
2016-11-02 07:38:11 -04:00
fi
yarn clean
VERSION=$version yarn build
# include the sample config in the tarball. Arguably this should be done by
# `yarn build`, but it's just too painful.
cp config.sample.json webapp/
mkdir -p dist
cp -r webapp $name-$version
2019-04-24 06:27:07 -04:00
# Just in case you have a local config, remove it before packaging
rm $name-$version/config.json || true
2019-04-24 06:27:07 -04:00
# if $version looks like semver with leading v, strip it before writing to file
if [[ ${version} =~ ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+(-.+)?$ ]]; then
echo ${version:1} > $name-$version/version
else
echo ${version} > $name-$version/version
fi
tar chvzf dist/$name-$version.tar.gz $name-$version
rm -r $name-$version
echo
echo "Packaged dist/$name-$version.tar.gz"