-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev-publish.sh
executable file
·62 lines (51 loc) · 2.07 KB
/
dev-publish.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
#!/bin/sh
read -p "Have you updated the package version (y/n)? " answer
case ${answer:0:1} in
y | Y) ;;
*)
echo "Please do so according to https://semver.org/"
exit 1
;;
esac
# Check if docker exists
if [[ "$(docker -v 2>/dev/null)" == "" ]]; then
printf -- 'You dont seem to have Docker installed.\n'
printf -- 'Get it: https://www.docker.com/community-edition\n'
printf -- 'Exiting with code 127...\n'
exit 127
fi
printf -- 'Docker found.\n'
if [ "$(docker ps -q -f name=verdaccio)" ]; then
printf -- '\033[37m Verdaccio already running, pulling down... \033[0m\n'
docker stop verdaccio >/dev/null 2>&1
printf -- '\033[32m SUCCESS: Pulled down Verdaccio instance \033[0m\n'
fi
printf -- '\033[37m Starting verdaccio... \033[0m\n'
docker run -d -it --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio:4.2.1 >/dev/null 2>&1
docker start verdaccio 2>&1
until $(curl --output /dev/null --silent --head --fail http://localhost:4873); do
printf '.'
sleep 1
done
printf -- '\033[32m SUCCESS: Verdaccio is now running \033[0m\n'
printf -- '\033[37m Creating verdaccio user... \033[0m\n'
/usr/bin/expect <<EOD
spawn npm adduser --registry http://localhost:4873
expect {
"Username:" {send "test\r"; exp_continue}
"Password:" {send "test\r"; exp_continue}
"Email: (this IS public)" {send "test@test@42.nl\r"; exp_continue}
}
EOD
printf -- '\033[32m SUCCESS: verdaccio user created \033[0m\n'
# compile version
printf -- '\033[37m Attempting to compile \033[0m\n'
npm run tsc
printf -- '\033[32m SUCCESS: Succesfully compiled \033[0m\n'
# Publish packages
printf -- '\033[37m Attempting to publish to verdaccio... \033[0m\n'
npm publish --registry http://localhost:4873
printf -- '\033[32m SUCCESS: Succesfully published packages \033[0m\n'
# Provide instructions
version=$(awk -F'"' '/"version": ".+"/{ print $4; exit; }' package.json)
printf -- '\033[32m Now go to your test project set the version of "@42.nl/authentication" to "%s" then run "npm install --registry http://localhost:4873" \033[0m\n' $version