This repository has been archived by the owner on Sep 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinspector.json
151 lines (122 loc) · 2.94 KB
/
inspector.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name" : "Inspector (export) config",
"let" :
{
"APPLICATION" : "inspector",
"QOOXDOO_PATH" : "../qooxdoo",
"CACHE" : "${TMPDIR}/qx${QOOXDOO_VERSION}/cache",
"THEME" : "inspector.theme.Theme",
"ICONTHEME" : ["Tango"],
"INSPECTOR_ROOT" : ".",
"INSPECTOR_PATH" : "${ROOT}/build",
"OPTIMIZE" : ["basecalls", "variables", "privates", "strings", "whitespace"]
},
"jobs" :
{
"libraries" :
{
"desc" : "includer job, to hold the essential libraries for the compile jobs",
"library" :
[
{
"manifest" : "${QOOXDOO_PATH}/framework/Manifest.json"
},
{
"manifest" : "${INSPECTOR_ROOT}/Manifest.json"
}
]
},
"common" :
{
"desc" : "common settings for base.json jobs",
"extend" : ["libraries"],
"include" :
[
"${THEME}",
"inspector.Application"
],
"cache" :
{
"compile" : "${CACHE}",
"downloads" : "${CACHE}/downloads",
"invalidate-on-tool-change" : true
},
"environment" :
{
"qx.version" : "${QOOXDOO_VERSION}",
"qx.revision" : "${QOOXDOO_REVISION}",
"qx.theme" : "${THEME}",
"qx.application" : "inspector.Application"
},
"asset-let" :
{
"qx.icontheme" : "${ICONTHEME}"
}
},
// -- build jobs ---------------------------------------------------
"build-script" :
{
"desc" : "create build script of current application",
"extend" : ["common"],
"environment" :
{
"qx.debug" : false
},
"compile-options" :
{
"paths" :
{
"file" : "${INSPECTOR_PATH}/script/inspector.js",
"app-root" : "${INSPECTOR_PATH}"
},
"uris" :
{
"script" : "./script"
,"resource" : "./resource"
},
"code" :
{
"format" : true,
"locales" : "${LOCALES}",
"optimize" : "${OPTIMIZE}",
"except" : []
}
},
"compile" : { "type" : "build" }
},
"build-files" :
{
"desc" : "copy files of current application to build dir",
"extend" : ["common"],
"copy-files" :
{
"files" :
[
"index.html"
],
"target" : "${INSPECTOR_PATH}",
"source" : "${INSPECTOR_ROOT}/source"
}
},
"build-resources":
{
"desc" : "copy necessary resources for current application to build dir",
"extend" : ["common"],
"copy-resources" :
{
"target" : "${INSPECTOR_PATH}",
"resource-filter" : true
}
},
"build" :
{
"desc" : "create build version of current application",
"run" :
[
"build-resources",
"build-script",
"build-files"
]
}
}
}