-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
138 lines (122 loc) · 2.66 KB
/
app.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
{
"name": "AngularInExtJsClassic",
"namespace": "AngularInExtJsClassic",
"version": "1.0.0.0",
"framework": "ext",
"template": "classicdesktop",
"indexHtmlPath": "index.html",
"requires": [
"font-awesome"
],
"builds": {
"desktop": {
"toolkit": "classic",
"theme": "theme-material",
"sass": {
"generated": {
"var": "${build.id}/sass/save.scss",
"src": "${build.id}/sass/save"
}
}
}
},
"classpath": ["app/shared/src","app/${build.id}/src"],
"overrides": ["app/shared/overrides","app/${build.id}/overrides"],
"sass": {
"namespace": "AngularInExtJsClassic",
"etc": [
"sass/etc/all.scss"
],
"var": [
"app/shared/sass/var.scss",
"app/${build.id}/sass/var.scss"
],
"src": [
"app/shared/src/sass/src.scss",
"app/${build.id}/sass/src.scss"
]
},
"resources": [
{ "path": "resources", "output": "shared" }
,{ "path": "resources/${build.id}" }
],
"output": {
"base": "${workspace.build.dir}/${build.environment}/${app.name}",
"page": "index.html",
"manifest": "generatedFiles/${build.id}.json",
"js": "generatedFiles/${build.id}/app.js",
"appCache": {"enable": false},
"resources": {
"path": "${build.id}/resources",
"shared": "resources"
}
},
"fashion": {
"missingParameters": "error",
"inliner": {"enable": false}
},
"js": [
],
"classic": {"js": []},
"modern": {"js": []},
"css": [
{
"path": "${build.out.css.path}",
"bundle": true,
"exclude": ["fashion"]
}
],
"loader": {
"cache": false,
"cacheParam": "_dc"
},
"production": {
"js": [
{"path": "app.js", "bundle": true},
{"path": "${app.webpack.bundle}"}
],
"output": {
"appCache": {
"enable": false,
"path": "cache.appcache"
}
},
"loader": {
"cache": "${build.timestamp}"
},
"cache": {
"enable": true
},
"compressor": {
"type": "yui"
}
},
"testing": {},
"development": {
"js": [
{"path": "app.js", "bundle": true},
{"path": "main.js"}
],
"watch": {
"delay": 250
}
},
"bootstrap": {
"base": "${app.dir}",
"manifest": "generatedFiles/${build.id}.json",
"microloader": "generatedFiles/bootstrap.js",
"css": "generatedFiles/bootstrap.css"
},
"cache": {
"enable": false,
"deltas": "${build.id}/deltas"
},
"appCache": {
"cache": ["index.html"],
"network": ["*"],
"fallback": []
},
"archivePath": "archive/${build.id}",
"ignore": ["(^|/)CVS(/?$|/.*?$)"],
"id": "99c8c75c-938b-4f0e-9c17-6b8e450a8520"
}