forked from mathigon/textbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
50 lines (43 loc) · 810 Bytes
/
setup.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
#!/bin/bash
npm install
cd ../
git clone https://github.com/mathigon/core.js
cd core.js
npm install
npm link
cd ../
git clone https://github.com/mathigon/fermat.js
cd fermat.js
npm install
npm link
npm link @mathigon/core
cd ../
git clone https://github.com/mathigon/hilbert.js
cd hilbert.js
npm install
npm link
npm link @mathigon/core
npm link @mathigon/fermat
cd ../
git clone https://github.com/mathigon/boost.js
cd boost.js
npm install
npm link
npm link @mathigon/core
npm link @mathigon/fermat
cd ../
git clone https://github.com/mathigon/parser
cd parser
npm install
npm link
npm link @mathigon/core
npm link @mathigon/hilbert
cd ../
cd textbooks
npm install
npm link
npm link @mathigon/core
npm link @mathigon/fermat
npm link @mathigon/hilbert
npm link @mathigon/boost
npm link @mathigon/parser