-
-
Notifications
You must be signed in to change notification settings - Fork 123
/
release.sh
executable file
·124 lines (98 loc) · 2.62 KB
/
release.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#!/bin/bash
VERSION=$1
# This is a general-purpose function to ask Yes/No questions in Bash, either
# with or without a default answer. It keeps repeating the question until it
# gets a valid answer.
# https://gist.github.com/davejamesmiller/1965569
ask() {
local prompt default reply
if [ "${2:-}" = "Y" ]; then
prompt="Y/n"
default=Y
elif [ "${2:-}" = "N" ]; then
prompt="y/N"
default=N
else
prompt="y/n"
default=
fi
while true; do
# Ask the question (not using "read -p" as it uses stderr not stdout)
echo -n "$1 [$prompt] "
# Read the answer (use /dev/tty in case stdin is redirected from somewhere else)
read reply </dev/tty
# Default?
if [ -z "$reply" ]; then
reply=$default
fi
# Check if the reply is valid
case "$reply" in
Y*|y*) return 0 ;;
N*|n*) return 1 ;;
esac
done
}
# make sure the release is being made from the master branch
BRANCH="$(git rev-parse --abbrev-ref HEAD)"
if [[ "$BRANCH" != "master" ]]; then
echo 'Not on master branch';
exit 1;
fi
# make sure typescript test passes
if ! npm run test:typescript; then
echo 'test:typescript failed'
exit
fi
# make sure there aren't any uncommited changes
if ! git diff-index --quiet HEAD --; then
echo 'Commit all changes before releas before making release'
exit
fi
# make sure release number is valid
if ! [[ "$VERSION" =~ ^([0-9]\.[0-9]\.[0-9]) ]]; then
echo "Release number must match a semver pattern similar to 1.0.0"
exit
fi
# make sure tests pass
if ! npm test; then
echo 'Tests failed... cannot create release'
exit
fi
# update package.json and package-lock.json
if ! sed -i 's/"version": "[^"]*"/"version": "'$VERSION'"/' package.json; then
echo 'version not replaced in package-lock.json'
exit
fi
# build from source
if ! npm run build; then
echo 'Build failed... cannot create release'
exit
fi
# remove contents of dist folder
if ! rm -r dist/*; then
echo '/dist not emptied... cannot create release'
exit
fi
# copy /build to /dist
if ! cp -r build/* dist; then
echo '/build not copied to /dist... cannot create release'
exit
fi
# make sure types are up-to-date
# grunt build does not create types
if ! npm run build:types; then
echo 'types not generated'
exit
fi
# prompt before finalizing
if ! ask "Version $VERSION is ready for release. Are you sure?"; then
echo 'release aborted'
exit
fi
git add .
git commit -a -m "v$VERSION Release"
git tag "v$VERSION"
git push origin "$BRANCH"
git push origin --tags
npm publish
echo "\033[32mv${VERSION} released\033[0;39m"