File size: 179 Bytes
c5ed897
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
git checkout **/package-lock.json
git pull

# Front
pushd front
npm i
time tsc
popd

# Grunt
pushd grunt
npm i
grunt
popd

# Server
pushd server
npm i
time tsc
popd