@vibe-validate/cli 0.17.0-rc3 → 0.17.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/config-templates/minimal.yaml +19 -8
- package/config-templates/typescript-library.yaml +19 -8
- package/config-templates/typescript-nodejs.yaml +19 -8
- package/config-templates/typescript-react.yaml +19 -8
- package/dist/bin/vibe-validate +54 -3
- package/dist/bin/vibe-validate.d.ts +5 -0
- package/dist/bin/vibe-validate.d.ts.map +1 -1
- package/dist/bin/vibe-validate.js +54 -3
- package/dist/bin/vibe-validate.js.map +1 -1
- package/dist/bin/vv +54 -3
- package/dist/bin.js +10 -0
- package/dist/bin.js.map +1 -1
- package/dist/commands/create-extractor.d.ts +13 -0
- package/dist/commands/create-extractor.d.ts.map +1 -0
- package/dist/commands/create-extractor.js +790 -0
- package/dist/commands/create-extractor.js.map +1 -0
- package/dist/commands/doctor.d.ts.map +1 -1
- package/dist/commands/doctor.js +172 -126
- package/dist/commands/doctor.js.map +1 -1
- package/dist/commands/pre-commit.d.ts.map +1 -1
- package/dist/commands/pre-commit.js +177 -63
- package/dist/commands/pre-commit.js.map +1 -1
- package/dist/commands/run.d.ts.map +1 -1
- package/dist/commands/run.js +15 -14
- package/dist/commands/run.js.map +1 -1
- package/dist/schemas/watch-pr-schema.d.ts +2 -2
- package/dist/services/ci-providers/github-actions.d.ts.map +1 -1
- package/dist/services/ci-providers/github-actions.js +3 -2
- package/dist/services/ci-providers/github-actions.js.map +1 -1
- package/dist/utils/git-detection.d.ts.map +1 -1
- package/dist/utils/git-detection.js +18 -18
- package/dist/utils/git-detection.js.map +1 -1
- package/dist/utils/project-id.d.ts +1 -2
- package/dist/utils/project-id.d.ts.map +1 -1
- package/dist/utils/project-id.js +6 -11
- package/dist/utils/project-id.js.map +1 -1
- package/dist/utils/runner-adapter.d.ts.map +1 -1
- package/dist/utils/runner-adapter.js +1 -0
- package/dist/utils/runner-adapter.js.map +1 -1
- package/dist/utils/secret-scanning.d.ts +72 -0
- package/dist/utils/secret-scanning.d.ts.map +1 -0
- package/dist/utils/secret-scanning.js +205 -0
- package/dist/utils/secret-scanning.js.map +1 -0
- package/dist/utils/validate-workflow.d.ts.map +1 -1
- package/dist/utils/validate-workflow.js +9 -1
- package/dist/utils/validate-workflow.js.map +1 -1
- package/package.json +10 -6
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Create Extractor Command
|
|
3
|
+
*
|
|
4
|
+
* Interactive scaffold generator for vibe-validate extractor plugins.
|
|
5
|
+
* Creates a fully-functional plugin directory with tests, samples, and documentation.
|
|
6
|
+
*/
|
|
7
|
+
import type { Command } from 'commander';
|
|
8
|
+
export declare function createExtractorCommand(program: Command): void;
|
|
9
|
+
/**
|
|
10
|
+
* Show verbose help with detailed documentation
|
|
11
|
+
*/
|
|
12
|
+
export declare function showCreateExtractorVerboseHelp(): void;
|
|
13
|
+
//# sourceMappingURL=create-extractor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-extractor.d.ts","sourceRoot":"","sources":["../../src/commands/create-extractor.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAiCzC,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAgD7D;AAioBD;;GAEG;AACH,wBAAgB,8BAA8B,IAAI,IAAI,CAsHrD"}
|