Pull version features from build script

This commit is contained in:
mmcwilliams 2019-03-22 20:28:16 -04:00
parent 79e16fb166
commit 372ab01d57
1 changed files with 2 additions and 15 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
#./node_modules/.bin/tsc -p tsconfig.json
./node_modules/.bin/tsc -p tsconfig.json
#electron-build fails when local modules are in parent directory
#copy them into lib directory
@ -8,17 +8,4 @@ cp -r ./lib/* ./app/lib/
cp -r ./lib/* ./cli/lib/
cp ./data/cfg.json ./app/data/
cp ./data/cfg.json ./cli/data/
#version all sub projects and config files
version=$(jq -r '.version' ./package.json)
echo "VERSION: $version"
declare -a fileArr=("./data/cfg.json" "./app/package.json" "./cli/package.json")
for i in "${fileArr[@]}"
do
tmp=$(mktemp)
VERSION="$version" jq '.version = env.VERSION' "$i" > "$tmp" && mv "$tmp" "$i"
done
cp ./data/cfg.json ./cli/data/