-
Notifications
You must be signed in to change notification settings - Fork 1
/
compile.json
93 lines (93 loc) · 1.92 KB
/
compile.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
{
"$schema": "https://qooxdoo.org/schema/compile-1-0-0.json",
"ignores": [
"qx.registry",
"qx.registry.main",
"qx.registry.app",
"qx.registry.setApp"
],
"targets": [
{
"type": "build",
"outputPath": "build",
"minify": "mangle",
"writeCompileInfo": false,
"bundle": {
"include": "qx.*"
}
}
],
"defaultTarget": "build",
"locales": [
"en"
],
"environment": {
"qx.icontheme": "TangibleLight"
},
"applications": [
{
"class": "bootstrap.Application",
"theme": "qx.theme.TangibleLight",
"name": "fullapp",
"bootPath": "source/boot",
"include": [
"qx.ui.*",
"qx.theme.*",
"qx.registry.*",
"fullapp.*",
"qx.bom.*",
"qx.data.*",
"qx.core.*",
"qx.lang.*",
"qx.dom.*",
"qx.event.*",
"qx.io.*",
"qx.html.*"
],
"exclude": [
"qx.ui.mobile.*",
"qx.ui.website.*"
]
},
{
"class": "bootstrap.Application",
"theme": "qx.theme.Simple",
"name": "basicapp",
"bootPath": "source/boot",
"include": [
"qx.application.*",
"qx.bom.*",
"qx.Class",
"qx.core.*",
"qx.dom.*",
"qx.event.*",
"qx.html.*",
"qx.io.request.*",
"qx.lang.*",
"qx.log.*",
"qx.Mixin",
"qx.Part",
"qx.registry.*",
"qx.Theme",
"qx.theme.manager.*",
"qx.ui.basic.*",
"qx.ui.container.*",
"qx.ui.core.*",
"qx.ui.decoration.*",
"qx.ui.embed.*",
"qx.ui.form.*",
"qx.ui.layout.*",
"qx.ui.menu.*",
"qx.ui.menubar.*",
"qx.ui.popup.*",
"qx.ui.splitpane.*",
"qx.ui.table.*",
"qx.ui.tabview.*",
"qx.ui.toolbar.*",
"qx.ui.window.*",
"qx.util.format.*"
],
"exclude": []
}
]
}