@xemahq/xema 0.1.5 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +64 -15
- package/dist/assets/boot-graph.json +72 -0
- package/dist/assets/core/distribution.lock.json +1244 -0
- package/dist/assets/core/images.lock.json +428 -0
- package/dist/assets/oss/distribution.lock.json +1978 -0
- package/dist/assets/oss/images.lock.json +594 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +9 -1
- package/dist/cli.js.map +1 -1
- package/dist/commands/dev.d.ts.map +1 -1
- package/dist/commands/dev.js +36 -14
- package/dist/commands/dev.js.map +1 -1
- package/dist/commands/doctor.js +1 -1
- package/dist/commands/doctor.js.map +1 -1
- package/dist/commands/down.d.ts +3 -0
- package/dist/commands/down.d.ts.map +1 -0
- package/dist/commands/down.js +54 -0
- package/dist/commands/down.js.map +1 -0
- package/dist/commands/logs.d.ts +3 -0
- package/dist/commands/logs.d.ts.map +1 -0
- package/dist/commands/logs.js +61 -0
- package/dist/commands/logs.js.map +1 -0
- package/dist/commands/serve.d.ts.map +1 -1
- package/dist/commands/serve.js +38 -8
- package/dist/commands/serve.js.map +1 -1
- package/dist/commands/status.d.ts +3 -0
- package/dist/commands/status.d.ts.map +1 -0
- package/dist/commands/status.js +41 -0
- package/dist/commands/status.js.map +1 -0
- package/dist/commands/up.d.ts +3 -0
- package/dist/commands/up.d.ts.map +1 -0
- package/dist/commands/up.js +44 -0
- package/dist/commands/up.js.map +1 -0
- package/dist/dev/infra-preflight.js +1 -1
- package/dist/dev/infra-preflight.js.map +1 -1
- package/dist/lib/command-registry.d.ts +1 -1
- package/dist/lib/command-registry.d.ts.map +1 -1
- package/dist/lib/command-registry.js +4 -0
- package/dist/lib/command-registry.js.map +1 -1
- package/dist/runtime/boot-graph-loader.d.ts +17 -0
- package/dist/runtime/boot-graph-loader.d.ts.map +1 -0
- package/dist/runtime/boot-graph-loader.js +40 -0
- package/dist/runtime/boot-graph-loader.js.map +1 -0
- package/dist/runtime/config/loader.d.ts +11 -0
- package/dist/runtime/config/loader.d.ts.map +1 -0
- package/dist/runtime/config/loader.js +38 -0
- package/dist/runtime/config/loader.js.map +1 -0
- package/dist/runtime/config/schema.d.ts +202 -0
- package/dist/runtime/config/schema.d.ts.map +1 -0
- package/dist/runtime/config/schema.js +125 -0
- package/dist/runtime/config/schema.js.map +1 -0
- package/dist/runtime/env-seeder.d.ts +17 -0
- package/dist/runtime/env-seeder.d.ts.map +1 -0
- package/dist/runtime/env-seeder.js +80 -0
- package/dist/runtime/env-seeder.js.map +1 -0
- package/dist/runtime/foreground.d.ts +8 -0
- package/dist/runtime/foreground.d.ts.map +1 -0
- package/dist/runtime/foreground.js +71 -0
- package/dist/runtime/foreground.js.map +1 -0
- package/dist/runtime/infra/infra-catalog.d.ts +19 -0
- package/dist/runtime/infra/infra-catalog.d.ts.map +1 -0
- package/dist/runtime/infra/infra-catalog.js +128 -0
- package/dist/runtime/infra/infra-catalog.js.map +1 -0
- package/dist/runtime/infra/infra-plan.d.ts +16 -0
- package/dist/runtime/infra/infra-plan.d.ts.map +1 -0
- package/dist/runtime/infra/infra-plan.js +44 -0
- package/dist/runtime/infra/infra-plan.js.map +1 -0
- package/dist/runtime/infra/infra-runner.d.ts +26 -0
- package/dist/runtime/infra/infra-runner.d.ts.map +1 -0
- package/dist/runtime/infra/infra-runner.js +135 -0
- package/dist/runtime/infra/infra-runner.js.map +1 -0
- package/dist/runtime/launch.d.ts +24 -0
- package/dist/runtime/launch.d.ts.map +1 -0
- package/dist/runtime/launch.js +116 -0
- package/dist/runtime/launch.js.map +1 -0
- package/dist/runtime/lock-loader.d.ts +26 -0
- package/dist/runtime/lock-loader.d.ts.map +1 -0
- package/dist/runtime/lock-loader.js +61 -0
- package/dist/runtime/lock-loader.js.map +1 -0
- package/dist/runtime/paths.d.ts +14 -0
- package/dist/runtime/paths.d.ts.map +1 -0
- package/dist/runtime/paths.js +109 -0
- package/dist/runtime/paths.js.map +1 -0
- package/dist/runtime/platform-services.d.ts +2 -0
- package/dist/runtime/platform-services.d.ts.map +1 -0
- package/dist/runtime/platform-services.js +8 -0
- package/dist/runtime/platform-services.js.map +1 -0
- package/dist/runtime/port-map.d.ts +3 -0
- package/dist/runtime/port-map.d.ts.map +1 -0
- package/dist/runtime/port-map.js +25 -0
- package/dist/runtime/port-map.js.map +1 -0
- package/dist/runtime/roster.d.ts +32 -0
- package/dist/runtime/roster.d.ts.map +1 -0
- package/dist/runtime/roster.js +106 -0
- package/dist/runtime/roster.js.map +1 -0
- package/dist/runtime/runner/container-runner.d.ts +14 -0
- package/dist/runtime/runner/container-runner.d.ts.map +1 -0
- package/dist/runtime/runner/container-runner.js +61 -0
- package/dist/runtime/runner/container-runner.js.map +1 -0
- package/dist/runtime/runner/docker-cli.d.ts +11 -0
- package/dist/runtime/runner/docker-cli.d.ts.map +1 -0
- package/dist/runtime/runner/docker-cli.js +53 -0
- package/dist/runtime/runner/docker-cli.js.map +1 -0
- package/dist/runtime/runner/health-probe.d.ts +2 -0
- package/dist/runtime/runner/health-probe.d.ts.map +1 -0
- package/dist/runtime/runner/health-probe.js +38 -0
- package/dist/runtime/runner/health-probe.js.map +1 -0
- package/dist/runtime/runner/helm-runner.d.ts +19 -0
- package/dist/runtime/runner/helm-runner.d.ts.map +1 -0
- package/dist/runtime/runner/helm-runner.js +70 -0
- package/dist/runtime/runner/helm-runner.js.map +1 -0
- package/dist/runtime/runner/native-runner.d.ts +9 -0
- package/dist/runtime/runner/native-runner.d.ts.map +1 -0
- package/dist/runtime/runner/native-runner.js +85 -0
- package/dist/runtime/runner/native-runner.js.map +1 -0
- package/dist/runtime/runner/service-runner.d.ts +23 -0
- package/dist/runtime/runner/service-runner.d.ts.map +1 -0
- package/dist/runtime/runner/service-runner.js +10 -0
- package/dist/runtime/runner/service-runner.js.map +1 -0
- package/dist/runtime/supervisor.d.ts +46 -0
- package/dist/runtime/supervisor.d.ts.map +1 -0
- package/dist/runtime/supervisor.js +77 -0
- package/dist/runtime/supervisor.js.map +1 -0
- package/dist/runtime/unit-type.d.ts +9 -0
- package/dist/runtime/unit-type.d.ts.map +1 -0
- package/dist/runtime/unit-type.js +19 -0
- package/dist/runtime/unit-type.js.map +1 -0
- package/dist/runtime/waves.d.ts +15 -0
- package/dist/runtime/waves.d.ts.map +1 -0
- package/dist/runtime/waves.js +77 -0
- package/dist/runtime/waves.js.map +1 -0
- package/package.json +7 -8
- package/xema.config.example.yaml +45 -0
|
@@ -0,0 +1,594 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"distributionId": "oss",
|
|
4
|
+
"images": [
|
|
5
|
+
{
|
|
6
|
+
"biomeId": "activity-feed",
|
|
7
|
+
"target": "server",
|
|
8
|
+
"imageRef": "ghcr.io/xema-dev/activity-feed",
|
|
9
|
+
"contentHash": "20908871cae241ce09dfea6333c24ded2a1b6f5b001357bd7347231823c5fbd0",
|
|
10
|
+
"repo": "repos/xema-platform",
|
|
11
|
+
"path": "repos/xema-platform/biomes/activity-feed"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"biomeId": "agent-runtime",
|
|
15
|
+
"target": "server",
|
|
16
|
+
"imageRef": "ghcr.io/xema-dev/agent-runtime",
|
|
17
|
+
"contentHash": "b25fdf366d261664091ae0598ce1deea51b3a73432b209300612c4c8ae3ab90c",
|
|
18
|
+
"repo": "repos/xema-community",
|
|
19
|
+
"path": "repos/xema-community/biomes/agent-runtime"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"biomeId": "app-runtime",
|
|
23
|
+
"target": "server",
|
|
24
|
+
"imageRef": "ghcr.io/xema-dev/app-runtime",
|
|
25
|
+
"contentHash": "e0aa230a4afc5696dc470833eb0eab54d2a9a3a1f1bf5bb954f2c701e90d4601",
|
|
26
|
+
"repo": "repos/xema-community",
|
|
27
|
+
"path": "repos/xema-community/biomes/app-runtime"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"biomeId": "audit",
|
|
31
|
+
"target": "server",
|
|
32
|
+
"imageRef": "ghcr.io/xema-dev/audit",
|
|
33
|
+
"contentHash": "803969883666aa39728b3cbbe651339780d6f60ee47e9446bc2e89db47a189a7",
|
|
34
|
+
"repo": "repos/xema-community",
|
|
35
|
+
"path": "repos/xema-community/biomes/audit"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"biomeId": "authorization",
|
|
39
|
+
"target": "server",
|
|
40
|
+
"imageRef": "ghcr.io/xema-dev/authorization",
|
|
41
|
+
"contentHash": "245d117b1995400b18f9f4ee32581e071ac6be56e147aa5918a9fe1028979d53",
|
|
42
|
+
"repo": "repos/xema-community",
|
|
43
|
+
"path": "repos/xema-community/biomes/authorization"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"biomeId": "aws-integration",
|
|
47
|
+
"target": "server",
|
|
48
|
+
"imageRef": "ghcr.io/xema-dev/aws-integration",
|
|
49
|
+
"contentHash": "783ae41a9b3e3d986d97be085a13de281723eb3f9228accc3ebbbb138ef4c20b",
|
|
50
|
+
"repo": "repos/xema-biomes-community",
|
|
51
|
+
"path": "repos/xema-biomes-community/biomes/platform/aws-integration"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"biomeId": "backlog",
|
|
55
|
+
"target": "server",
|
|
56
|
+
"imageRef": "ghcr.io/xema-dev/backlog",
|
|
57
|
+
"contentHash": "f571e2b2de58f370447213d734c882346712c2dbe962dd5153785daf46d36add",
|
|
58
|
+
"repo": "repos/xema-community",
|
|
59
|
+
"path": "repos/xema-community/biomes/backlog"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"biomeId": "biome-adapter-host",
|
|
63
|
+
"target": "server",
|
|
64
|
+
"imageRef": "ghcr.io/xema-dev/biome-adapter-host",
|
|
65
|
+
"contentHash": "35ed335d7c9bb1d84ed4d6ce1caa28fac921b3136ca17b1ed7a522512547d74d",
|
|
66
|
+
"repo": "repos/xema-community",
|
|
67
|
+
"path": "repos/xema-community/biomes/biome-adapter-host"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"biomeId": "biome-fetcher",
|
|
71
|
+
"target": "server",
|
|
72
|
+
"imageRef": "ghcr.io/xema-dev/biome-fetcher",
|
|
73
|
+
"contentHash": "daf28fad85e02f36e7a99a0c6bc680b870bf22ab0f4c710ec4bfc19228783e38",
|
|
74
|
+
"repo": "repos/xema-community",
|
|
75
|
+
"path": "repos/xema-community/biomes/biome-fetcher"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"biomeId": "biome-host",
|
|
79
|
+
"target": "server",
|
|
80
|
+
"imageRef": "ghcr.io/xema-dev/biome-host",
|
|
81
|
+
"contentHash": "3429ec045d1d1bf999f7d8e57d9fd405ab8abe355b446c9b31677ed9db089794",
|
|
82
|
+
"repo": "repos/xema-community",
|
|
83
|
+
"path": "repos/xema-community/biomes/biome-host"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"biomeId": "capability-registry",
|
|
87
|
+
"target": "server",
|
|
88
|
+
"imageRef": "ghcr.io/xema-dev/capability-registry",
|
|
89
|
+
"contentHash": "2700fa6a21ff85e712895c368e86e72dd0346dfc68ed507c96382ab0e0d6fdad",
|
|
90
|
+
"repo": "repos/xema-community",
|
|
91
|
+
"path": "repos/xema-community/biomes/capability-registry"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"biomeId": "catalog",
|
|
95
|
+
"target": "server",
|
|
96
|
+
"imageRef": "ghcr.io/xema-dev/catalog",
|
|
97
|
+
"contentHash": "2a4bbae971fbda69878faeece02a012374768ee94f2233f141801bc6ef6bc03f",
|
|
98
|
+
"repo": "repos/xema-platform",
|
|
99
|
+
"path": "repos/xema-platform/biomes/catalog"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"biomeId": "container-registry",
|
|
103
|
+
"target": "server",
|
|
104
|
+
"imageRef": "ghcr.io/xema-dev/container-registry",
|
|
105
|
+
"contentHash": "3d9812a7386f7426dcadec8fc6fc59491ce1ffe7372c35ad46afa66aa943afab",
|
|
106
|
+
"repo": "repos/xema-community",
|
|
107
|
+
"path": "repos/xema-community/biomes/container-registry"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"biomeId": "contribution-test",
|
|
111
|
+
"target": "server",
|
|
112
|
+
"imageRef": "ghcr.io/xema-dev/contribution-test",
|
|
113
|
+
"contentHash": "67677f046e5db95c83617c535c9c7f89d3ee31e7be51db87be1d125eafdc5246",
|
|
114
|
+
"repo": "repos/xema-community",
|
|
115
|
+
"path": "repos/xema-community/biomes/kernel/contribution-test"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"biomeId": "control-plane",
|
|
119
|
+
"target": "server",
|
|
120
|
+
"imageRef": "ghcr.io/xema-dev/control-plane",
|
|
121
|
+
"contentHash": "ddd88bd7dcdbd5f15c21ae0508c395f5cb738eb512b5acbf644db600e82ddf5b",
|
|
122
|
+
"repo": "repos/xema-community",
|
|
123
|
+
"path": "repos/xema-community/biomes/control-plane"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"biomeId": "conversation-channels",
|
|
127
|
+
"target": "server",
|
|
128
|
+
"imageRef": "ghcr.io/xema-dev/conversation-channels",
|
|
129
|
+
"contentHash": "7f6b90e5f3df2da2fdb0d2643c02d7962d4e9d7350ccf066ac6db18175c6d667",
|
|
130
|
+
"repo": "repos/xema-community",
|
|
131
|
+
"path": "repos/xema-community/biomes/conversation-channels"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"biomeId": "database-buddy",
|
|
135
|
+
"target": "server",
|
|
136
|
+
"imageRef": "ghcr.io/xema-dev/database-buddy",
|
|
137
|
+
"contentHash": "471b05bce79d64bdefc37ca78a8e031103ad80ed3730ec8bceec30beebcaeca5",
|
|
138
|
+
"repo": "repos/xema-cultivars",
|
|
139
|
+
"path": "repos/xema-cultivars/biomes/platform/database-buddy"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"biomeId": "demo",
|
|
143
|
+
"target": "server",
|
|
144
|
+
"imageRef": "ghcr.io/xema-dev/demo",
|
|
145
|
+
"contentHash": "17b363af487386933077aff56d050076f3c7497e833f6eccae67d9d0310100bd",
|
|
146
|
+
"repo": "repos/xema-biomes-community",
|
|
147
|
+
"path": "repos/xema-biomes-community/biomes/platform/demo"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"biomeId": "design-system-builder",
|
|
151
|
+
"target": "server",
|
|
152
|
+
"imageRef": "ghcr.io/xema-dev/design-system-builder",
|
|
153
|
+
"contentHash": "78f57bcd6e0f0a1c82000a087fe733eda514c3d372bd732e1177c07f5aee1f90",
|
|
154
|
+
"repo": "repos/xema-cultivars",
|
|
155
|
+
"path": "repos/xema-cultivars/biomes/platform/design-system-builder"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"biomeId": "document-buddy",
|
|
159
|
+
"target": "server",
|
|
160
|
+
"imageRef": "ghcr.io/xema-dev/document-buddy",
|
|
161
|
+
"contentHash": "998fd1f831cc91f8e079248321f5779e17c5a86b1777a423a56189d398bd3e70",
|
|
162
|
+
"repo": "repos/xema-cultivars",
|
|
163
|
+
"path": "repos/xema-cultivars/biomes/platform/document-buddy"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"biomeId": "document-buddy-reference",
|
|
167
|
+
"target": "server",
|
|
168
|
+
"imageRef": "ghcr.io/xema-dev/document-buddy-reference",
|
|
169
|
+
"contentHash": "46b1ff590006a9ad2454a51a2b1514ddd0b7c14f3c44967d14c7091ad7670d4e",
|
|
170
|
+
"repo": "repos/xema-biomes-community",
|
|
171
|
+
"path": "repos/xema-biomes-community/biomes/document-buddy-reference"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"biomeId": "document-rendering",
|
|
175
|
+
"target": "server",
|
|
176
|
+
"imageRef": "ghcr.io/xema-dev/document-rendering",
|
|
177
|
+
"contentHash": "fafea5af9ab9382fd691afbed8137e04d9d2102f8aa268456abbfc55ce8b9efe",
|
|
178
|
+
"repo": "repos/xema-platform",
|
|
179
|
+
"path": "repos/xema-platform/biomes/document-rendering"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"biomeId": "gmail-connector",
|
|
183
|
+
"target": "server",
|
|
184
|
+
"imageRef": "ghcr.io/xema-dev/gmail-connector",
|
|
185
|
+
"contentHash": "890d2f9dc3b24c9374376ac0ef5e26b1d8d11b0c7e034c839f6ed1e4ea6b8cd5",
|
|
186
|
+
"repo": "repos/xema-biomes-community",
|
|
187
|
+
"path": "repos/xema-biomes-community/biomes/platform/gmail-connector"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"biomeId": "imap-fetcher",
|
|
191
|
+
"target": "server",
|
|
192
|
+
"imageRef": "ghcr.io/xema-dev/imap-fetcher",
|
|
193
|
+
"contentHash": "e80d0dbab9b6cef10281fcac2add5b15d18211ed57e9b4df82935c0badfc62d2",
|
|
194
|
+
"repo": "repos/xema-biomes-community",
|
|
195
|
+
"path": "repos/xema-biomes-community/biomes/platform/imap-fetcher"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"biomeId": "integration-platform",
|
|
199
|
+
"target": "server",
|
|
200
|
+
"imageRef": "ghcr.io/xema-dev/integration-platform",
|
|
201
|
+
"contentHash": "ef84e1bb9534ff9c4705f26c8652b1e62f3ea1bd4186c54578f82b6d7f2ddbe9",
|
|
202
|
+
"repo": "repos/xema-platform",
|
|
203
|
+
"path": "repos/xema-platform/biomes/integration-platform"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"biomeId": "knowledge-base",
|
|
207
|
+
"target": "server",
|
|
208
|
+
"imageRef": "ghcr.io/xema-dev/knowledge-base",
|
|
209
|
+
"contentHash": "6ba387975ecb418e5275dfedad8472928fade27e551f9acfb4b610657d3dbe5f",
|
|
210
|
+
"repo": "repos/xema-community",
|
|
211
|
+
"path": "repos/xema-community/biomes/knowledge-base"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"biomeId": "linear-integration",
|
|
215
|
+
"target": "server",
|
|
216
|
+
"imageRef": "ghcr.io/xema-dev/linear-integration",
|
|
217
|
+
"contentHash": "aedfd9e205b1d2967d0812536225b76af889cfeba599a86babcb492e1a4fa6d5",
|
|
218
|
+
"repo": "repos/xema-biomes-community",
|
|
219
|
+
"path": "repos/xema-biomes-community/biomes/platform/linear-integration"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"biomeId": "mailops",
|
|
223
|
+
"target": "server",
|
|
224
|
+
"imageRef": "ghcr.io/xema-dev/mailops",
|
|
225
|
+
"contentHash": "e0e2dc1c95dd4147cbc98488d9b3690eae1dd6d13df83ef5522b7f76bf239b75",
|
|
226
|
+
"repo": "repos/xema-platform",
|
|
227
|
+
"path": "repos/xema-platform/biomes/mailops"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"biomeId": "mcp-router",
|
|
231
|
+
"target": "server",
|
|
232
|
+
"imageRef": "ghcr.io/xema-dev/mcp-router",
|
|
233
|
+
"contentHash": "284fbe2b827d91011574667d874a1f3b52b8021099f700508c546e6704c28dc7",
|
|
234
|
+
"repo": "repos/xema-community",
|
|
235
|
+
"path": "repos/xema-community/biomes/mcp-router"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"biomeId": "memory-maintenance",
|
|
239
|
+
"target": "server",
|
|
240
|
+
"imageRef": "ghcr.io/xema-dev/memory-maintenance",
|
|
241
|
+
"contentHash": "a2b0ab9d45ac71bd35a05f0c22bd0d69555ae7cf87de794f31418718a0e8717d",
|
|
242
|
+
"repo": "repos/xema-biomes-community",
|
|
243
|
+
"path": "repos/xema-biomes-community/biomes/platform/memory-maintenance"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"biomeId": "ms365-connector",
|
|
247
|
+
"target": "server",
|
|
248
|
+
"imageRef": "ghcr.io/xema-dev/ms365-connector",
|
|
249
|
+
"contentHash": "57d7f879ee6e2126c0606e83139027fe3794a7f2d8eb95284e22fde7cf88bf9e",
|
|
250
|
+
"repo": "repos/xema-biomes-community",
|
|
251
|
+
"path": "repos/xema-biomes-community/biomes/platform/ms365-connector"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"biomeId": "object-registry",
|
|
255
|
+
"target": "server",
|
|
256
|
+
"imageRef": "ghcr.io/xema-dev/object-registry",
|
|
257
|
+
"contentHash": "3a1c5ed2b49414d0afbe5229e9b52edd97bf3013078e48741e9903196b8a93ea",
|
|
258
|
+
"repo": "repos/xema-community",
|
|
259
|
+
"path": "repos/xema-community/biomes/object-registry"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"biomeId": "opencode-runtime",
|
|
263
|
+
"target": "server",
|
|
264
|
+
"imageRef": "ghcr.io/xema-dev/opencode-runtime",
|
|
265
|
+
"contentHash": "6f623bd99cf0f33a307d7c157800b6973a550a934e1f15bb0368f60185dd1d1f",
|
|
266
|
+
"repo": "repos/xema-community",
|
|
267
|
+
"path": "repos/xema-community/biomes/opencode-runtime"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"biomeId": "org-database-pool",
|
|
271
|
+
"target": "server",
|
|
272
|
+
"imageRef": "ghcr.io/xema-dev/org-database-pool",
|
|
273
|
+
"contentHash": "eceb2758fbb704162e6a349ae7310dc64bd7357011e5250ff97989f512cb4a35",
|
|
274
|
+
"repo": "repos/xema-platform",
|
|
275
|
+
"path": "repos/xema-platform/biomes/org-database-pool"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"biomeId": "output-surface-control",
|
|
279
|
+
"target": "server",
|
|
280
|
+
"imageRef": "ghcr.io/xema-dev/output-surface-control",
|
|
281
|
+
"contentHash": "66a101edd787da22b4c7ac8bb0534f1ca3b02af52ce64fc8d632ece57aea871e",
|
|
282
|
+
"repo": "repos/xema-community",
|
|
283
|
+
"path": "repos/xema-community/biomes/kernel/output-surface-control"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"biomeId": "output-surface-inspector",
|
|
287
|
+
"target": "server",
|
|
288
|
+
"imageRef": "ghcr.io/xema-dev/output-surface-inspector",
|
|
289
|
+
"contentHash": "fb25eddc76dc195e1dbfca6b8a9dc1cf61c0e506e01a705f9edfb51a1d3aafab",
|
|
290
|
+
"repo": "repos/xema-community",
|
|
291
|
+
"path": "repos/xema-community/biomes/kernel/output-surface-inspector"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"biomeId": "policy-distributor",
|
|
295
|
+
"target": "server",
|
|
296
|
+
"imageRef": "ghcr.io/xema-dev/policy-distributor",
|
|
297
|
+
"contentHash": "a835adde641a9cdbb6d861596e664d59c25af42c9e06c7c89f1a80feb3273cc5",
|
|
298
|
+
"repo": "repos/xema-community",
|
|
299
|
+
"path": "repos/xema-community/biomes/policy-distributor"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"biomeId": "project-registry",
|
|
303
|
+
"target": "server",
|
|
304
|
+
"imageRef": "ghcr.io/xema-dev/project-registry",
|
|
305
|
+
"contentHash": "c346ca58906532c1120cd30a196f85b6eb3528cf2f0483d76a8981daaacc3937",
|
|
306
|
+
"repo": "repos/xema-community",
|
|
307
|
+
"path": "repos/xema-community/biomes/project-registry"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"biomeId": "public-gateway",
|
|
311
|
+
"target": "server",
|
|
312
|
+
"imageRef": "ghcr.io/xema-dev/public-gateway",
|
|
313
|
+
"contentHash": "ca7f301ddaf3b6b749dae24296242dc27c61725e83f7e370e29b4f66e096f060",
|
|
314
|
+
"repo": "repos/xema-community",
|
|
315
|
+
"path": "repos/xema-community/biomes/public-gateway"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"biomeId": "runtime",
|
|
319
|
+
"target": "server",
|
|
320
|
+
"imageRef": "ghcr.io/xema-dev/runtime",
|
|
321
|
+
"contentHash": "6f5e4eb114dd507fb81e449c75f262ee67ce77850aa231890cbbde155c0492aa",
|
|
322
|
+
"repo": "repos/xema-community",
|
|
323
|
+
"path": "repos/xema-community/biomes/kernel/runtime"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"biomeId": "search",
|
|
327
|
+
"target": "server",
|
|
328
|
+
"imageRef": "ghcr.io/xema-dev/search",
|
|
329
|
+
"contentHash": "08a859af75e85110df689b838f4701a24b90f7f58da6012fca238d65166c196e",
|
|
330
|
+
"repo": "repos/xema-platform",
|
|
331
|
+
"path": "repos/xema-platform/biomes/search"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"biomeId": "skills-toolkit",
|
|
335
|
+
"target": "server",
|
|
336
|
+
"imageRef": "ghcr.io/xema-dev/skills-toolkit",
|
|
337
|
+
"contentHash": "61c7a6f62550c03f021727264e96ac97e114f74523c5de79f74b2d5c32685256",
|
|
338
|
+
"repo": "repos/xema-biomes-community",
|
|
339
|
+
"path": "repos/xema-biomes-community/biomes/platform/skills-toolkit"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"biomeId": "smtp-sender",
|
|
343
|
+
"target": "server",
|
|
344
|
+
"imageRef": "ghcr.io/xema-dev/smtp-sender",
|
|
345
|
+
"contentHash": "c433123922c1b0b22c67394bfab21b5315cd8089810913ab97765cd93cecfd03",
|
|
346
|
+
"repo": "repos/xema-biomes-community",
|
|
347
|
+
"path": "repos/xema-biomes-community/biomes/platform/smtp-sender"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"biomeId": "software-dev",
|
|
351
|
+
"target": "server",
|
|
352
|
+
"imageRef": "ghcr.io/xema-dev/software-dev",
|
|
353
|
+
"contentHash": "d5477b047b6a88b75dbedc07a9c571e4ea9f87c6024dfd66bfcb1ccc6c9ac183",
|
|
354
|
+
"repo": "repos/xema-community",
|
|
355
|
+
"path": "repos/xema-community/biomes/platform/software-dev"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"biomeId": "software-dev",
|
|
359
|
+
"target": "server",
|
|
360
|
+
"imageRef": "ghcr.io/xema-dev/software-dev",
|
|
361
|
+
"contentHash": "43a4f7e831746d764698518f78e48f7af13c7e851f2617bf1943d0c4cf17ab4b",
|
|
362
|
+
"repo": "repos/xema-platform",
|
|
363
|
+
"path": "repos/xema-platform/biomes/software-dev"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"biomeId": "space-registry",
|
|
367
|
+
"target": "server",
|
|
368
|
+
"imageRef": "ghcr.io/xema-dev/space-registry",
|
|
369
|
+
"contentHash": "45a3fccc543f911c42dabf29ef021bd8df548188cae239f2b0770ebd1a1bedc8",
|
|
370
|
+
"repo": "repos/xema-community",
|
|
371
|
+
"path": "repos/xema-community/biomes/space-registry"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"biomeId": "studio-author",
|
|
375
|
+
"target": "server",
|
|
376
|
+
"imageRef": "ghcr.io/xema-dev/studio-author",
|
|
377
|
+
"contentHash": "964796fec31347c38cbd193bcf4f48c4684a1bafb1e147290479ad15e07a7685",
|
|
378
|
+
"repo": "repos/xema-community",
|
|
379
|
+
"path": "repos/xema-community/biomes/kernel/studio-author"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"biomeId": "subagents",
|
|
383
|
+
"target": "server",
|
|
384
|
+
"imageRef": "ghcr.io/xema-dev/subagents",
|
|
385
|
+
"contentHash": "8ada2022114f7e5bbec1cd2a031cf06d98714ebab9d4f28b2b14630d08221ac3",
|
|
386
|
+
"repo": "repos/xema-community",
|
|
387
|
+
"path": "repos/xema-community/biomes/kernel/subagents"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"biomeId": "user-hub",
|
|
391
|
+
"target": "server",
|
|
392
|
+
"imageRef": "ghcr.io/xema-dev/user-hub",
|
|
393
|
+
"contentHash": "28186681a50403f6e522233e9a6f051d8479559cd844798b996a5a68351cfeef",
|
|
394
|
+
"repo": "repos/xema-community",
|
|
395
|
+
"path": "repos/xema-community/biomes/user-hub"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"biomeId": "webapp-studio",
|
|
399
|
+
"target": "server",
|
|
400
|
+
"imageRef": "ghcr.io/xema-dev/webapp-studio",
|
|
401
|
+
"contentHash": "88defa0855f848cbb434d565d536886ad961c732d8faa764241c651218c4302c",
|
|
402
|
+
"repo": "repos/xema-cultivars",
|
|
403
|
+
"path": "repos/xema-cultivars/biomes/platform/webapp-studio"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"biomeId": "workflow-runtime",
|
|
407
|
+
"target": "server",
|
|
408
|
+
"imageRef": "ghcr.io/xema-dev/workflow-runtime",
|
|
409
|
+
"contentHash": "362e96942507122969a203bb57a5a4ef47a605e15e326bbcb1bf55a32545c821",
|
|
410
|
+
"repo": "repos/xema-community",
|
|
411
|
+
"path": "repos/xema-community/biomes/workflow-runtime"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"biomeId": "workload-runtime",
|
|
415
|
+
"target": "server",
|
|
416
|
+
"imageRef": "ghcr.io/xema-dev/workload-runtime",
|
|
417
|
+
"contentHash": "aa0980688db9da04541058921970c87930fbdee91826a62f7e2b9a695e95f1d0",
|
|
418
|
+
"repo": "repos/xema-platform",
|
|
419
|
+
"path": "repos/xema-platform/biomes/workload-runtime"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"biomeId": "workspace-orchestrator",
|
|
423
|
+
"target": "server",
|
|
424
|
+
"imageRef": "ghcr.io/xema-dev/workspace-orchestrator",
|
|
425
|
+
"contentHash": "37c8b9d11179f99edb124b69a0ddc4e6a5d0b1b8ffef57b089f1044544c9bfd3",
|
|
426
|
+
"repo": "repos/xema-platform",
|
|
427
|
+
"path": "repos/xema-platform/biomes/workspace-orchestrator"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"biomeId": "workspace-proxy",
|
|
431
|
+
"target": "server",
|
|
432
|
+
"imageRef": "ghcr.io/xema-dev/workspace-proxy",
|
|
433
|
+
"contentHash": "941f4e4c4eee5669758397aef6fb14fddc3f94e7361d7d8a99f479974bb8246e",
|
|
434
|
+
"repo": "repos/xema-community",
|
|
435
|
+
"path": "repos/xema-community/biomes/workspace-proxy"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"biomeId": "workspace-storage-pool",
|
|
439
|
+
"target": "server",
|
|
440
|
+
"imageRef": "ghcr.io/xema-dev/workspace-storage-pool",
|
|
441
|
+
"contentHash": "08c40c89b26f2966fc3b52cacd9cc7fb9ed8b6b01818ed48f8b33034f4101f4d",
|
|
442
|
+
"repo": "repos/xema-platform",
|
|
443
|
+
"path": "repos/xema-platform/biomes/workspace-storage-pool"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"biomeId": "xema-biome-runner",
|
|
447
|
+
"target": "server",
|
|
448
|
+
"imageRef": "ghcr.io/xema-dev/xema-biome-runner",
|
|
449
|
+
"contentHash": "006551209097aa45d4cf3df13c7996bd7202b215832e8fdf781eeaef4a007719",
|
|
450
|
+
"repo": "repos/xema-community",
|
|
451
|
+
"path": "repos/xema-community/biomes/xema-biome-runner"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"biomeId": "xema-capability-router",
|
|
455
|
+
"target": "server",
|
|
456
|
+
"imageRef": "ghcr.io/xema-dev/xema-capability-router",
|
|
457
|
+
"contentHash": "4cec540faa74dcde1d206427512a8759416812c917769b9c207f047e8aefab45",
|
|
458
|
+
"repo": "repos/xema-community",
|
|
459
|
+
"path": "repos/xema-community/biomes/xema-capability-router"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"biomeId": "xema-platform-worker",
|
|
463
|
+
"target": "server",
|
|
464
|
+
"imageRef": "ghcr.io/xema-dev/xema-platform-worker",
|
|
465
|
+
"contentHash": "67a2390e02893dce845c3dce0e7e7ab99a45d2c1ba927c2a35800ac6b7ac2ee6",
|
|
466
|
+
"repo": "repos/xema-platform",
|
|
467
|
+
"path": "repos/xema-platform/biomes/xema-platform-worker"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"biomeId": "xema-shell",
|
|
471
|
+
"target": "server",
|
|
472
|
+
"imageRef": "ghcr.io/xema-dev/xema-shell",
|
|
473
|
+
"contentHash": "649f7e94a86fa4bd335e59d248f3a16e2bb6d0778a17cf6f7fffa993b575a082",
|
|
474
|
+
"repo": "repos/xema-community",
|
|
475
|
+
"path": "repos/xema-community/biomes/xema-shell"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"biomeId": "xema-store",
|
|
479
|
+
"target": "server",
|
|
480
|
+
"imageRef": "ghcr.io/xema-dev/xema-store",
|
|
481
|
+
"contentHash": "13718b54691941ad26d7f33e43c46c2e6c12010eb32671666da094de022283e8",
|
|
482
|
+
"repo": "repos/xema-store-api",
|
|
483
|
+
"path": "repos/xema-store-api/biomes/xema-store"
|
|
484
|
+
}
|
|
485
|
+
],
|
|
486
|
+
"webBiomes": [
|
|
487
|
+
{
|
|
488
|
+
"biomeId": "activity-web",
|
|
489
|
+
"repo": "submodules/xema-host-web",
|
|
490
|
+
"path": "submodules/xema-host-web/biomes/system/activity-web"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"biomeId": "capabilities-web",
|
|
494
|
+
"repo": "submodules/xema-host-web",
|
|
495
|
+
"path": "submodules/xema-host-web/biomes/system/capabilities-web"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"biomeId": "concepts-web",
|
|
499
|
+
"repo": "submodules/xema-host-web",
|
|
500
|
+
"path": "submodules/xema-host-web/biomes/system/concepts-web"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"biomeId": "container-registry-web",
|
|
504
|
+
"repo": "submodules/xema-host-web",
|
|
505
|
+
"path": "submodules/xema-host-web/biomes/system/container-registry-web"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"biomeId": "environments-web",
|
|
509
|
+
"repo": "submodules/xema-host-web",
|
|
510
|
+
"path": "submodules/xema-host-web/biomes/system/environments-web"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"biomeId": "gateway-routes-web",
|
|
514
|
+
"repo": "submodules/xema-host-web",
|
|
515
|
+
"path": "submodules/xema-host-web/biomes/system/gateway-routes-web"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"biomeId": "grants-web",
|
|
519
|
+
"repo": "submodules/xema-host-web",
|
|
520
|
+
"path": "submodules/xema-host-web/biomes/system/grants-web"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"biomeId": "mailops-web",
|
|
524
|
+
"repo": "submodules/xema-host-web",
|
|
525
|
+
"path": "submodules/xema-host-web/biomes/system/mailops-web"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"biomeId": "objects-web",
|
|
529
|
+
"repo": "submodules/xema-host-web",
|
|
530
|
+
"path": "submodules/xema-host-web/biomes/system/objects-web"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"biomeId": "org-database-client",
|
|
534
|
+
"repo": "repos/xema-biomes-community",
|
|
535
|
+
"path": "repos/xema-biomes-community/biomes/platform/org-database-client"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"biomeId": "org-databases",
|
|
539
|
+
"repo": "repos/xema-cultivars",
|
|
540
|
+
"path": "repos/xema-cultivars/biomes/platform/org-databases"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"biomeId": "org-databases-web",
|
|
544
|
+
"repo": "submodules/xema-host-web",
|
|
545
|
+
"path": "submodules/xema-host-web/biomes/platform/org-databases-web"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"biomeId": "policies-web",
|
|
549
|
+
"repo": "submodules/xema-host-web",
|
|
550
|
+
"path": "submodules/xema-host-web/biomes/system/policies-web"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"biomeId": "runners-web",
|
|
554
|
+
"repo": "submodules/xema-host-web",
|
|
555
|
+
"path": "submodules/xema-host-web/biomes/system/runners-web"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"biomeId": "search-web",
|
|
559
|
+
"repo": "submodules/xema-host-web",
|
|
560
|
+
"path": "submodules/xema-host-web/biomes/system/search-web"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"biomeId": "service-registry-web",
|
|
564
|
+
"repo": "submodules/xema-host-web",
|
|
565
|
+
"path": "submodules/xema-host-web/biomes/system/service-registry-web"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"biomeId": "software-dev-web",
|
|
569
|
+
"repo": "submodules/xema-host-web",
|
|
570
|
+
"path": "submodules/xema-host-web/biomes/platform/software-dev-web"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"biomeId": "spaces-web",
|
|
574
|
+
"repo": "submodules/xema-host-web",
|
|
575
|
+
"path": "submodules/xema-host-web/biomes/system/spaces-web"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"biomeId": "user-hub-web",
|
|
579
|
+
"repo": "submodules/xema-host-web",
|
|
580
|
+
"path": "submodules/xema-host-web/biomes/system/user-hub-web"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"biomeId": "webapp-studio-web",
|
|
584
|
+
"repo": "submodules/xema-host-web",
|
|
585
|
+
"path": "submodules/xema-host-web/biomes/platform/webapp-studio-web"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"biomeId": "xema-storefront-web",
|
|
589
|
+
"repo": "submodules/xema-host-web",
|
|
590
|
+
"path": "submodules/xema-host-web/biomes/platform/xema-storefront-web"
|
|
591
|
+
}
|
|
592
|
+
],
|
|
593
|
+
"resolvedAt": "2026-06-25T13:45:42.886Z"
|
|
594
|
+
}
|
package/dist/cli.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAoBpC,wBAAgB,YAAY,IAAI,OAAO,CA0BtC;AAED,wBAAsB,IAAI,CAAC,IAAI,GAAE,aAAa,CAAC,MAAM,CAAgB,GAAG,OAAO,CAAC,IAAI,CAAC,CAMpF"}
|
package/dist/cli.js
CHANGED
|
@@ -8,14 +8,18 @@ const apply_1 = require("./commands/apply");
|
|
|
8
8
|
const biome_1 = require("./commands/biome");
|
|
9
9
|
const dev_1 = require("./commands/dev");
|
|
10
10
|
const doctor_1 = require("./commands/doctor");
|
|
11
|
+
const down_1 = require("./commands/down");
|
|
11
12
|
const export_1 = require("./commands/export");
|
|
12
13
|
const import_1 = require("./commands/import");
|
|
14
|
+
const logs_1 = require("./commands/logs");
|
|
13
15
|
const objects_1 = require("./commands/objects");
|
|
14
16
|
const plan_1 = require("./commands/plan");
|
|
15
17
|
const run_1 = require("./commands/run");
|
|
16
18
|
const serve_1 = require("./commands/serve");
|
|
17
19
|
const shell_1 = require("./commands/shell");
|
|
18
|
-
const
|
|
20
|
+
const status_1 = require("./commands/status");
|
|
21
|
+
const up_1 = require("./commands/up");
|
|
22
|
+
const CLI_VERSION = '0.2.0';
|
|
19
23
|
function buildProgram() {
|
|
20
24
|
const program = new commander_1.Command();
|
|
21
25
|
program
|
|
@@ -24,6 +28,10 @@ function buildProgram() {
|
|
|
24
28
|
.version(CLI_VERSION, '-v, --version', 'print the CLI version')
|
|
25
29
|
.showHelpAfterError(true)
|
|
26
30
|
.configureHelp({ sortSubcommands: true });
|
|
31
|
+
(0, up_1.registerCommand)(program);
|
|
32
|
+
(0, down_1.registerCommand)(program);
|
|
33
|
+
(0, status_1.registerCommand)(program);
|
|
34
|
+
(0, logs_1.registerCommand)(program);
|
|
27
35
|
(0, dev_1.registerCommand)(program);
|
|
28
36
|
(0, serve_1.registerCommand)(program);
|
|
29
37
|
(0, biome_1.registerCommand)(program);
|
package/dist/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";;AA8BA,oCA0BC;AAED,oBAMC;AAtDD,yCAAoC;AAEpC,4CAAoE;AACpE,4CAAoE;AACpE,wCAAgE;AAChE,8CAAsE;AACtE,0CAAkE;AAClE,8CAAsE;AACtE,8CAAsE;AACtE,0CAAkE;AAClE,gDAAwE;AACxE,0CAAkE;AAClE,wCAAgE;AAChE,4CAAoE;AACpE,4CAAoE;AACpE,8CAAsE;AACtE,sCAA8D;AAE9D,MAAM,WAAW,GAAG,OAAO,CAAC;AAE5B,SAAgB,YAAY;IAC1B,MAAM,OAAO,GAAG,IAAI,mBAAO,EAAE,CAAC;IAC9B,OAAO;SACJ,IAAI,CAAC,MAAM,CAAC;SACZ,WAAW,CAAC,oDAAoD,CAAC;SACjE,OAAO,CAAC,WAAW,EAAE,eAAe,EAAE,uBAAuB,CAAC;SAC9D,kBAAkB,CAAC,IAAI,CAAC;SACxB,aAAa,CAAC,EAAE,eAAe,EAAE,IAAI,EAAE,CAAC,CAAC;IAE5C,IAAA,oBAAU,EAAC,OAAO,CAAC,CAAC;IACpB,IAAA,sBAAY,EAAC,OAAO,CAAC,CAAC;IACtB,IAAA,wBAAc,EAAC,OAAO,CAAC,CAAC;IACxB,IAAA,sBAAY,EAAC,OAAO,CAAC,CAAC;IACtB,IAAA,qBAAW,EAAC,OAAO,CAAC,CAAC;IACrB,IAAA,uBAAa,EAAC,OAAO,CAAC,CAAC;IACvB,IAAA,uBAAa,EAAC,OAAO,CAAC,CAAC;IACvB,IAAA,sBAAY,EAAC,OAAO,CAAC,CAAC;IACtB,IAAA,uBAAa,EAAC,OAAO,CAAC,CAAC;IACvB,IAAA,wBAAc,EAAC,OAAO,CAAC,CAAC;IACxB,IAAA,wBAAc,EAAC,OAAO,CAAC,CAAC;IACxB,IAAA,qBAAW,EAAC,OAAO,CAAC,CAAC;IACrB,IAAA,uBAAa,EAAC,OAAO,CAAC,CAAC;IACvB,IAAA,yBAAe,EAAC,OAAO,CAAC,CAAC;IACzB,IAAA,wBAAc,EAAC,OAAO,CAAC,CAAC;IAExB,OAAO,OAAO,CAAC;AACjB,CAAC;AAEM,KAAK,UAAU,IAAI,CAAC,OAA8B,OAAO,CAAC,IAAI;IACnE,MAAM,OAAO,GAAG,YAAY,EAAE,CAAC;IAI/B,MAAM,OAAO,CAAC,UAAU,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;AACtC,CAAC;AAID,IAAI,OAAO,CAAC,IAAI,KAAK,MAAM,EAAE,CAAC;IAC5B,KAAK,IAAI,EAAE,CAAC,KAAK,CAAC,CAAC,GAAY,EAAE,EAAE;QACjC,MAAM,OAAO,GAAG,GAAG,YAAY,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;QACjE,OAAO,CAAC,KAAK,CAAC,SAAS,OAAO,EAAE,CAAC,CAAC;QAClC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC,CAAC,CAAC;AACL,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dev.d.ts","sourceRoot":"","sources":["../../src/commands/dev.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dev.d.ts","sourceRoot":"","sources":["../../src/commands/dev.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAmBzC,wBAAgB,eAAe,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAqBtD"}
|