-
Notifications
You must be signed in to change notification settings - Fork 2
/
compile.json.old
128 lines (123 loc) · 3.52 KB
/
compile.json.old
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
{
"$schema": "https://qooxdoo.org/schema/compile-1-0-0.json",
"targets": [
{
"type": "source",
"application-types": ["browser"],
"outputPath": "compiled/source",
"proxySourcePath": "source/proxies",
"babelOptions": {
"targets": "Chrome >= 100, Firefox >= 100, edge >= 18"
},
"environment": {
"qx.buildType": "source",
"zx.io.remote.NetworkEndpoint.server": false
},
"writeCompileInfo": true,
"addTimestampsToUrls": false,
"addCreatedAt": true
},
{
"type": "source",
"application-types": ["node"],
"outputPath": "compiled/source-node",
"babelOptions": {
"targets": "node >= 16"
},
"environment": {
"qx.buildType": "source",
"zx.cms.thinClientTargetPath": "compiled/source",
"zx.io.remote.NetworkEndpoint.server": true
},
"writeCompileInfo": true,
"addTimestampsToUrls": false,
"addCreatedAt": true
},
{
"type": "build",
"application-types": ["browser"],
"outputPath": "compiled/build",
"proxySourcePath": "source/proxies",
"babelOptions": {
"targets": "Chrome >= 100, Firefox >= 100, edge >= 18"
},
"environment": {
"zx.io.remote.NetworkEndpoint.server": false,
"qx.buildType": "build"
},
"addTimestampsToUrls": false
},
{
"type": "build",
"application-types": ["node"],
"outputPath": "compiled/build-node",
"babelOptions": {
"targets": "node >= 16"
},
"environment": {
"qx.buildType": "build",
"zx.cms.thinClientTargetPath": "compiled/build",
"zx.io.remote.NetworkEndpoint.server": true
},
"addTimestampsToUrls": false
}
],
"defaultTarget": "source",
"locales": ["en"],
"environment": {
"qx.icontheme": "Tango",
"zx.cms.client.theme": "zx.cms.client.theme.Simple",
"zx.io.remote.Endpoint.traceIo": false,
"zx.io.remote.BrowserXhrEndpoint.traceIo": false,
"zx.io.remote.FastifyXhrListener.sessionTracing": false
},
"libraries": [".", "../qxl.widgetbrowser", "../qxl.formdemo", "../qxl.versionlabel", "../UploadMgr"],
"applications": [
{
"title": "Node Unit Tests",
"description": "Node Unit Tests",
"class": "zx.test.NodeUnitTestsApp",
"type": "node",
"name": "node-tests"
},
{
"title": "Zen CLI",
"description": "Command Line app (`zx`) used for managing and running the Zen CMS",
"class": "zx.cli.CliApp",
"type": "node",
"name": "cli"
},
{
"title": "Zen Browser Test Runner",
"description": "Browser app for running unit tests",
"class": "zx.test.TestsAppBrowser",
"type": "browser",
"name": "test-browser"
},
{
"title": "Zen Browser Thin Client Test Runner",
"description": "Thin client app for running unit tests",
"class": "zx.test.TestsAppThinClient",
"type": "browser",
"name": "test-thinclient"
},
{
"title": "Zen Server Test Runner",
"description": "Web Server app for running unit tests",
"class": "zx.test.TestsAppServer",
"type": "node",
"name": "test-server"
},
{
"title": "Zen Puppeteer Server",
"description": "Server app that runs inside the zenesisuk/zx-puppeteer-server Docker container",
"class": "zx.cli.PuppeteerServerApp",
"type": "node",
"name": "puppeteer-server"
}
],
"sass": {
"compiler": "latest",
"copyOriginal": true
}
}