@theholocron/cli 3.31.1 → 3.33.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/dist/capabilities/index.d.mts +6 -0
- package/dist/cli.mjs +175 -6
- package/dist/cli.mjs.map +1 -1
- package/dist/index.d.mts +7 -0
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -216,6 +216,12 @@ interface HolocronConfig {
|
|
|
216
216
|
* collision. Overridden by `--org` CLI flag or `HOLOCRON_ORG` env var.
|
|
217
217
|
*/
|
|
218
218
|
org?: string;
|
|
219
|
+
/**
|
|
220
|
+
* Org canonical domain (e.g. `"theholocron.dev"`). Subdomains are derived
|
|
221
|
+
* from this — `preview: true` on a deploy workflow resolves the preview base
|
|
222
|
+
* domain as `preview.<domain>`, giving URLs like `<repo>-pr-<n>.<domain>`.
|
|
223
|
+
*/
|
|
224
|
+
domain?: string;
|
|
219
225
|
/**
|
|
220
226
|
* Repository identity and metadata. When set, `PluginLoader` injects
|
|
221
227
|
* `repo.name` into every plugin's `RuntimeContext.repo` so plugins that
|
|
@@ -345,6 +351,7 @@ interface ResolvedHolocronConfig {
|
|
|
345
351
|
description?: string;
|
|
346
352
|
homepage?: string;
|
|
347
353
|
org?: string;
|
|
354
|
+
domain?: string;
|
|
348
355
|
repo?: RepoConfig;
|
|
349
356
|
workflows?: Array<string | {
|
|
350
357
|
name: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.33.0",
|
|
4
4
|
"description": "The Holocron CLI — a pluggable, capability-based orchestrator for spinning up and operating software projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"@napi-rs/keyring": "^1.3.0",
|
|
45
45
|
"@sentry/node": "^10.70.0",
|
|
46
46
|
"@theholocron/components-doc": "^1.6.0",
|
|
47
|
-
"@theholocron/github-client": "^1.
|
|
48
|
-
"@theholocron/http-client": "^1.
|
|
47
|
+
"@theholocron/github-client": "^1.11.2",
|
|
48
|
+
"@theholocron/http-client": "^1.11.2",
|
|
49
49
|
"@theholocron/registry-doc": "^1.6.0",
|
|
50
50
|
"chalk": "^6.0.0",
|
|
51
51
|
"ora": "^9.4.1",
|