-
Notifications
You must be signed in to change notification settings - Fork 0
/
update-packages.sh
executable file
·73 lines (51 loc) · 1 KB
/
update-packages.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
#!/bin/bash
step=1
echo -e "\n$((step++)). Checking for updates"
ncu --target semver -u
if [ $? -ne 0 ]; then
echo Failed
exit 1
fi
if [ $(git status --porcelain package.json | wc -l) -eq 0 ]; then
echo "No update needed"
exit 0
fi
echo -e "\n$((step++)). Delete node_modules and package-lock.json"
rm -Rf node_modules package-lock.json
if [ $? -ne 0 ]; then
echo Failed
exit 1
fi
echo -e "\n$((step++)). Install node packages"
npm install
if [ $? -ne 0 ]; then
echo Failed
exit 1
fi
echo -e "\n$((step++)). Build project for linux"
npm run build:linux
if [ $? -ne 0 ]; then
echo Failed
exit 1
fi
echo -e "\n$((step++)). Lint project"
npm run lint
if [ $? -ne 0 ]; then
echo Failed
exit 1
fi
echo -e "\n$((step++)). Commit changes"
git commit -a -m "Update node packages"
if [ $? -ne 0 ]; then
echo Failed
exit 1
fi
echo -e "\n$((step++)). Push changes to remote repositories"
npm run push
if [ $? -eq 0 ]; then
echo "Success"
exit 0
else
echo "Failed"
exit 1
fi