-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoctopus.json
54 lines (53 loc) · 1.07 KB
/
octopus.json
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
{
"workDir": ".",
"dependencies": [
{
"name": "cardinal",
"src": "https://github.com/privatesky/cardinal.git",
"actions": [
{
"type": "smartClone",
"target": "./dev/",
"collectLog": false
},
{
"type": "execute",
"cmd": "cd ./dev/cardinal && npm install"
}
]
},
{
"name": "webcardinal",
"src": "https://github.com/webcardinal/webcardinal-bundler",
"actions": [
{
"type": "smartClone",
"target": "./",
"collectLog": false
},
{
"type": "execute",
"cmd": "cd ./webcardinal && npm install && npm run bundle-all && npm run build"
}
]
}
],
"build-cardinal": [
{
"name": "cardinal-build",
"src": "",
"actions": [
{
"type": "remove",
"target": "./cardinal"
},
{
"type": "execute",
"cmd": "cd dev/cardinal && npm run dist ../../"
}
]
}
],
"copy-w3c-theme": [
]
}