-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnpmInstall.sh
executable file
·51 lines (35 loc) · 1.21 KB
/
npmInstall.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
set -x
(cd ./author && rm -rf ./node-modules )
(cd ./author && npm install )
(cd ./author && npm run build )
(cd ./legal && rm -rf ./node-modules )
(cd ./legal && npm install )
(cd ./legal && npm run build )
(cd ./brains && rm -rf ./node-modules )
(cd ./brains && npm install )
(cd ./simulator && rm -rf node-modules )
(cd ./simulator && npm install )
(cd ./simulator && npm run build)
(cd ./common && rm -rf node-modules )
(cd ./common && npm install )
(cd ./designer && rm -rf node-modules )
(cd ./designer && npm install )
(cd ./designer && npm run build)
(cd ./gallery && rm -rf node-modules )
(cd ./gallery && npm install )
(cd ./gallery && npm run build)
(cd ./home && rm -rf node-modules )
(cd ./home && npm install )
(cd ./home && npm run build)
(cd ./ingress && rm -rf node-modules )
(cd ./ingress && npm install )
(cd ./permissions && rm -rf node-modules )
(cd ./permissions && npm install )
(cd ./shapes && rm -rf node-modules )
(cd ./shapes && npm install )
(cd ./sheets && rm -rf node-modules )
(cd ./sheets && npm install )
(cd ./userinfo && rm -rf node-modules )
(cd ./userinfo && npm install )
(cd ./gamification && rm -rf node-modules )
(cd ./gamification && npm install )