-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish
executable file
·75 lines (65 loc) · 2.36 KB
/
publish
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
#!/usr/bin/env bash
ESC=$(printf "\033")
SEMVERS=("patch" "minor" "major")
function select_option {
# little helpers for terminal print control and key input
cursor_blink_on() { printf "$ESC[?25h"; }
cursor_blink_off() { printf "$ESC[?25l"; }
cursor_to() { printf "$ESC[$1;${2:-1}H"; }
print_option() { printf " $1"; }
print_selected() { printf "$ESC[36m❯ $1$ESC[0m"; }
get_cursor_row() { IFS=';' read -sdR -p $'\E[6n' ROW COL; echo ${ROW#*[}; }
key_input() { read -s -n3 key 2>/dev/null >&2
if [[ $key = $ESC[A ]]; then echo up; fi
if [[ $key = $ESC[B ]]; then echo down; fi
if [[ $key = "" ]]; then echo enter; fi; }
# initially print empty new lines (scroll down if at bottom of screen)
for opt; do printf "\n"; done
# determine current screen position for overwriting the options
local lastrow=`get_cursor_row`
local startrow=$(($lastrow - $#))
# ensure cursor and input echoing back on upon a ctrl+c during read -s
trap "cursor_blink_on; stty echo; printf '\n'; exit" 2
cursor_blink_off
local selected=0
while true; do
# print options by overwriting the last lines
local idx=0
for opt; do
cursor_to $(($startrow + $idx))
if [ $idx -eq $selected ]; then
print_selected "$opt"
else
print_option "$opt"
fi
((idx++))
done
# user key control
case `key_input` in
enter) break;;
up) ((selected--));
if [ $selected -lt 0 ]; then selected=$(($# - 1)); fi;;
down) ((selected++));
if [ $selected -ge $# ]; then selected=0; fi;;
esac
done
# cursor position back to normal
cursor_to $lastrow
# clear all
for opt; do
printf "\e[K\e[1A"
done
printf "\e[K\e[1A\e[K"
cursor_blink_on
return $selected
}
echo -e "\e[1mSelect semver version\e[21m \e[2m(use arrow keys)\e[22m"
select_option "${SEMVERS[@]}"
npm version ${SEMVERS[$?]}
if [[ $? > 0 ]]; then exit $?; fi
TAG=$(git describe --tags)
echo -e "\e[1A\e[K\e[1mUpdate package version to $TAG\e[21m"
git push origin master --tags
echo -e "\e[1mLogin to you NPM account\e[21m"
npm login
npm publish --access public