@theholocron/cli 3.5.0 → 3.5.1
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/cli.mjs +24 -9
- package/dist/cli.mjs.map +1 -1
- package/dist/index.d.mts +8 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -98,18 +98,24 @@ interface HolocronConfig {
|
|
|
98
98
|
* Use the object form to pass `with:` inputs to the reusable workflow.
|
|
99
99
|
*
|
|
100
100
|
* Supported values: "lint" | "test" | "typecheck" | "codeql" | "review" |
|
|
101
|
-
* "release" | "stale" | "greetings" | "dependencies" | "bookkeeping" | "audit"
|
|
101
|
+
* "release" | "stale" | "greetings" | "dependencies" | "bookkeeping" | "audit" |
|
|
102
|
+
* "deploy-docs"
|
|
102
103
|
*
|
|
103
104
|
* `holocron setup` writes `.github/workflows/<name>.yml` for each entry,
|
|
104
105
|
* calling the corresponding `ci-<name>.yml@main` reusable workflow.
|
|
105
106
|
* Files are overwritten on each run — they are generated artifacts.
|
|
106
107
|
*
|
|
108
|
+
* Use `paths` to append additional `on.push.paths` entries beyond the
|
|
109
|
+
* template default (e.g. the repo-specific docs content package path).
|
|
110
|
+
*
|
|
107
111
|
* @example
|
|
108
112
|
* ["lint", { "name": "release", "with": { "run-build": false } }]
|
|
113
|
+
* { "name": "deploy-docs", "with": { "name": "configs" }, "paths": ["packages/configs-docs/**"] }
|
|
109
114
|
*/
|
|
110
115
|
workflows?: Array<string | {
|
|
111
116
|
name: string;
|
|
112
117
|
with?: Record<string, unknown>;
|
|
118
|
+
paths?: string[];
|
|
113
119
|
}>;
|
|
114
120
|
providers: RawProvidersConfig;
|
|
115
121
|
apps?: AppConfig[];
|
|
@@ -153,6 +159,7 @@ interface ResolvedHolocronConfig {
|
|
|
153
159
|
workflows?: Array<string | {
|
|
154
160
|
name: string;
|
|
155
161
|
with?: Record<string, unknown>;
|
|
162
|
+
paths?: string[];
|
|
156
163
|
}>;
|
|
157
164
|
providers: ResolvedProvidersConfig;
|
|
158
165
|
apps: AppConfig[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/cli",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.1",
|
|
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",
|