Skip to content

Commit a786b9f

Browse files
committed
Update release packaging script
1 parent aa90d1d commit a786b9f

File tree

2 files changed

+59
-11
lines changed

2 files changed

+59
-11
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
"make-standalone": "webpack --config webpack.config.js --mode=production && node ./scripts/make-standalone.js",
4444
"docker-populate": "rm -rf ./docker/public ./build && webpack --config webpack.config.js --mode=production && mv ./build ./docker/public",
4545
"lint": "eslint ./src/core/**/*.ts && stylelint ./src/css/**/*.scss",
46-
"test": "npm run lint && npm run build && node ./scripts/make-standalone.js"
46+
"test": "npm run lint && npm run build && node ./scripts/make-standalone.js",
47+
"pack-release": "bash ./scripts/pack-release.sh"
4748
},
4849
"repository": {
4950
"type": "git",

scripts/pack-release.sh

+57-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,46 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
2+
3+
#
4+
# This script will package the script into a release zip file.
5+
#
6+
# It requires the following dependencies: 7z, jq and npm
7+
#
8+
9+
10+
set -o errexit # abort on nonzero exit status
11+
set -o nounset # abort on unbound variable
12+
set -o pipefail # don't hide errors within pipes
13+
14+
no_dep_exit_code=3
15+
16+
where() {
17+
local cmd
18+
cmd="$(command -v "$1")"
19+
echo "$cmd"
20+
}
21+
22+
e() {
23+
>&2 echo "$1"
24+
}
25+
26+
jq_cmd="$(where jq)"
27+
npm_cmd="$(where npm)"
28+
sz_cmd="$(where 7z)"
29+
30+
if ! [ -x "${jq_cmd}" ]; then
31+
e "required dependency not found: jq not found in the path or not executable"
32+
exit ${no_dep_exit_code}
33+
fi
34+
35+
if ! [ -x "${npm_cmd}" ]; then
36+
e "required dependency not found: npm not found in the path or not executable"
37+
exit ${no_dep_exit_code}
38+
fi
39+
40+
if ! [ -x "${sz_cmd}" ]; then
41+
e "required dependency not found: 7z not found in the path or not executable"
42+
exit ${no_dep_exit_code}
43+
fi
244

345
declare -a PACKAGE_FILES=(
446
'README.md'
@@ -9,24 +51,29 @@ declare -a PACKAGE_FILES=(
951

1052
cd "$(dirname "$0")" && cd ..
1153

12-
VERSION=$(jq -r .version "package.json")
13-
NAME=$(jq -r .name "package.json")
54+
VERSION=$("$jq_cmd" -r .version "package.json")
55+
NAME=$("$jq_cmd" -r .name "package.json")
1456
PACKAGED="$NAME-$VERSION.zip"
1557

16-
npm install
17-
npm run make-standalone
58+
e "Installing dependencies ..."
59+
"$npm_cmd" install
60+
61+
e "Building standalone ..."
62+
"$npm_cmd" run make-standalone
1863

1964
mkdir "standalone"
2065
mv "build/standalone.php" "standalone/indexer.php"
2166

22-
7z a "$PACKAGED" "standalone/"
23-
7z a "$PACKAGED" "build/"
67+
e "Creating release file ..."
68+
"$sz_cmd" a "$PACKAGED" "standalone/"
69+
"$sz_cmd" a "$PACKAGED" "build/"
2470

71+
e "Cleaning up ..."
2572
rm -rf "build" "standalone"
2673

2774
for FILE in "${PACKAGE_FILES[@]}"; do
28-
echo "Adding $FILE ..."
29-
7z a "$PACKAGED" "$FILE"
75+
e "Adding $FILE ..."
76+
"$sz_cmd" a "$PACKAGED" "$FILE"
3077
done
3178

32-
printf "\n\n>> $PACKAGED\n"
79+
e "> $PACKAGED"

0 commit comments

Comments
 (0)