@theholocron/cli 3.3.15 → 3.5.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 +5 -0
- package/dist/cli.mjs +36 -3
- package/dist/cli.mjs.map +1 -1
- package/dist/index.d.mts +3 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -83,6 +83,8 @@ interface HolocronConfig {
|
|
|
83
83
|
/** Project name. Derived from package.json when absent. */
|
|
84
84
|
name?: string;
|
|
85
85
|
description?: string;
|
|
86
|
+
/** Project homepage URL. Synced to package.json#homepage and the GitHub repo's website field by `holocron sync`. */
|
|
87
|
+
homepage?: string;
|
|
86
88
|
/**
|
|
87
89
|
* Repository identity and metadata. When set, `PluginLoader` injects
|
|
88
90
|
* `repo.name` into every plugin's `RuntimeContext.repo` so plugins that
|
|
@@ -146,6 +148,7 @@ type ResolvedProvidersConfig = Partial<Record<CapabilityKey, ResolvedProviderEnt
|
|
|
146
148
|
interface ResolvedHolocronConfig {
|
|
147
149
|
name: string;
|
|
148
150
|
description?: string;
|
|
151
|
+
homepage?: string;
|
|
149
152
|
repo?: RepoConfig;
|
|
150
153
|
workflows?: Array<string | {
|
|
151
154
|
name: string;
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "The Holocron CLI — a pluggable, capability-based orchestrator for spinning up and operating software projects.",
|
|
5
5
|
"homepage": "https://github.com/theholocron/holocron/tree/main/packages/cli#readme",
|
|
6
6
|
"bugs": "https://github.com/theholocron/holocron/issues",
|