@oss-autopilot/core 0.44.1 → 0.44.2
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-registry.d.ts +2 -1
- package/dist/cli.bundle.cjs.map +3 -3
- package/dist/core/ci-analysis.d.ts +3 -17
- package/dist/core/ci-analysis.js +3 -3
- package/dist/core/github-stats.d.ts +0 -20
- package/dist/core/github-stats.js +1 -1
- package/dist/core/github.js +2 -2
- package/dist/core/http-cache.d.ts +0 -2
- package/dist/core/http-cache.js +0 -4
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.js +1 -1
- package/dist/core/test-utils.d.ts +1 -3
- package/dist/core/test-utils.js +0 -41
- package/package.json +1 -1
package/dist/cli-registry.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* so that only the invoked command's dependencies are evaluated.
|
|
10
10
|
*/
|
|
11
11
|
import type { Command } from 'commander';
|
|
12
|
-
|
|
12
|
+
interface CLICommandDef {
|
|
13
13
|
/** Command name (used to build the local-only set for the preAction hook). */
|
|
14
14
|
name: string;
|
|
15
15
|
/** If true, skip the preAction GitHub token check. */
|
|
@@ -18,3 +18,4 @@ export interface CLICommandDef {
|
|
|
18
18
|
register(program: Command): void;
|
|
19
19
|
}
|
|
20
20
|
export declare const commands: CLICommandDef[];
|
|
21
|
+
export {};
|