@outfitter/tooling 0.3.3 → 0.3.4
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/.markdownlint-cli2.jsonc +55 -55
- package/README.md +21 -21
- package/dist/bun-version-compat.d.ts +2 -0
- package/dist/bun-version-compat.js +10 -0
- package/dist/cli/check-boundary-invocations.d.ts +34 -0
- package/dist/cli/check-boundary-invocations.js +14 -0
- package/dist/cli/check-bunup-registry.d.ts +36 -0
- package/dist/cli/check-bunup-registry.js +12 -0
- package/dist/cli/check-changeset.d.ts +66 -0
- package/dist/cli/check-changeset.js +20 -0
- package/dist/cli/check-clean-tree.d.ts +36 -0
- package/dist/cli/check-clean-tree.js +14 -0
- package/dist/cli/check-exports.d.ts +2 -0
- package/dist/cli/check-exports.js +14 -0
- package/dist/cli/check-markdown-links.d.ts +42 -0
- package/dist/cli/check-markdown-links.js +13 -0
- package/dist/cli/check-readme-imports.d.ts +60 -0
- package/dist/{shared/chunk-7tdgbqb0.js → cli/check-readme-imports.js} +7 -6
- package/dist/cli/check-tsdoc.d.ts +2 -0
- package/dist/cli/check-tsdoc.js +36 -0
- package/dist/cli/check.d.ts +19 -0
- package/dist/cli/check.js +10 -0
- package/dist/cli/fix.d.ts +19 -0
- package/dist/cli/fix.js +10 -0
- package/dist/cli/index.js +49 -1218
- package/dist/cli/init.d.ts +31 -0
- package/dist/cli/init.js +12 -0
- package/dist/cli/pre-push.d.ts +60 -0
- package/dist/cli/pre-push.js +27 -0
- package/dist/cli/upgrade-bun.d.ts +8 -0
- package/dist/cli/upgrade-bun.js +9 -0
- package/dist/index.d.ts +6 -186
- package/dist/index.js +4 -42
- package/dist/registry/build.d.ts +4 -0
- package/dist/registry/build.js +279 -0
- package/dist/registry/index.d.ts +3 -0
- package/dist/registry/index.js +1 -0
- package/dist/registry/schema.d.ts +2 -0
- package/dist/registry/schema.js +28 -0
- package/dist/shared/@outfitter/tooling-1hez6j9d.js +21 -0
- package/dist/shared/@outfitter/tooling-6cxfdx0q.js +187 -0
- package/dist/shared/{chunk-cmde0fwx.js → @outfitter/tooling-875svjnz.js} +16 -31
- package/dist/shared/@outfitter/tooling-9ram55dd.js +69 -0
- package/dist/shared/@outfitter/tooling-9vs606gq.d.ts +3 -0
- package/dist/shared/@outfitter/tooling-a4bfx4be.js +21 -0
- package/dist/shared/@outfitter/tooling-amrbp7cm.js +102 -0
- package/dist/shared/@outfitter/tooling-ctmgnap5.js +19 -0
- package/dist/shared/@outfitter/tooling-d363b88r.js +349 -0
- package/dist/shared/@outfitter/tooling-gcdvsqqp.js +73 -0
- package/dist/shared/@outfitter/tooling-h04te11c.js +231 -0
- package/dist/shared/@outfitter/tooling-ja1zg5yc.js +214 -0
- package/dist/shared/@outfitter/tooling-jnrs9rqd.js +4 -0
- package/dist/shared/@outfitter/tooling-mkynjra9.js +23 -0
- package/dist/shared/@outfitter/tooling-njw4z34x.d.ts +140 -0
- package/dist/shared/@outfitter/tooling-pq47jv6t.js +213 -0
- package/dist/shared/@outfitter/tooling-sjm8nebx.d.ts +109 -0
- package/dist/shared/@outfitter/tooling-vjmhvpjq.d.ts +29 -0
- package/dist/shared/@outfitter/tooling-wesswf21.d.ts +59 -0
- package/dist/shared/@outfitter/tooling-wwm97f47.js +81 -0
- package/dist/version.d.ts +2 -0
- package/dist/version.js +8 -0
- package/package.json +134 -131
- package/registry/registry.json +17 -10
- package/tsconfig.preset.bun.json +5 -5
- package/tsconfig.preset.json +33 -33
- package/biome.json +0 -81
- package/dist/shared/chunk-3s189drz.js +0 -4
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { CheckTsDocOptions, CoverageLevel, CoverageSummary, DeclarationCoverage, PackageCoverage, TsDocCheckResult, analyzeCheckTsdoc, analyzeSourceFile, calculateCoverage, classifyDeclaration, coverageLevelSchema, coverageSummarySchema, declarationCoverageSchema, getDeclarationKind, getDeclarationName, isExportedDeclaration, packageCoverageSchema, printCheckTsdocHuman, resolveJsonMode, runCheckTsdoc, tsDocCheckResultSchema } from "../shared/@outfitter/tooling-njw4z34x.js";
|
|
2
|
+
export { tsDocCheckResultSchema, runCheckTsdoc, resolveJsonMode, printCheckTsdocHuman, packageCoverageSchema, isExportedDeclaration, getDeclarationName, getDeclarationKind, declarationCoverageSchema, coverageSummarySchema, coverageLevelSchema, classifyDeclaration, calculateCoverage, analyzeSourceFile, analyzeCheckTsdoc, TsDocCheckResult, PackageCoverage, DeclarationCoverage, CoverageSummary, CoverageLevel, CheckTsDocOptions };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
analyzeCheckTsdoc,
|
|
4
|
+
analyzeSourceFile,
|
|
5
|
+
calculateCoverage,
|
|
6
|
+
classifyDeclaration,
|
|
7
|
+
coverageLevelSchema,
|
|
8
|
+
coverageSummarySchema,
|
|
9
|
+
declarationCoverageSchema,
|
|
10
|
+
getDeclarationKind,
|
|
11
|
+
getDeclarationName,
|
|
12
|
+
isExportedDeclaration,
|
|
13
|
+
packageCoverageSchema,
|
|
14
|
+
printCheckTsdocHuman,
|
|
15
|
+
resolveJsonMode,
|
|
16
|
+
runCheckTsdoc,
|
|
17
|
+
tsDocCheckResultSchema
|
|
18
|
+
} from "../shared/@outfitter/tooling-875svjnz.js";
|
|
19
|
+
import"../shared/@outfitter/tooling-jnrs9rqd.js";
|
|
20
|
+
export {
|
|
21
|
+
tsDocCheckResultSchema,
|
|
22
|
+
runCheckTsdoc,
|
|
23
|
+
resolveJsonMode,
|
|
24
|
+
printCheckTsdocHuman,
|
|
25
|
+
packageCoverageSchema,
|
|
26
|
+
isExportedDeclaration,
|
|
27
|
+
getDeclarationName,
|
|
28
|
+
getDeclarationKind,
|
|
29
|
+
declarationCoverageSchema,
|
|
30
|
+
coverageSummarySchema,
|
|
31
|
+
coverageLevelSchema,
|
|
32
|
+
classifyDeclaration,
|
|
33
|
+
calculateCoverage,
|
|
34
|
+
analyzeSourceFile,
|
|
35
|
+
analyzeCheckTsdoc
|
|
36
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CLI check command - Run linting checks (wraps ultracite)
|
|
3
|
+
*/
|
|
4
|
+
/** Options for the check command */
|
|
5
|
+
interface CheckOptions {
|
|
6
|
+
paths?: string[];
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Build the ultracite check command
|
|
10
|
+
* @param options - Command options
|
|
11
|
+
* @returns Array of command arguments
|
|
12
|
+
*/
|
|
13
|
+
declare function buildCheckCommand(options: CheckOptions): string[];
|
|
14
|
+
/**
|
|
15
|
+
* Run the check command
|
|
16
|
+
* @param paths - Paths to check
|
|
17
|
+
*/
|
|
18
|
+
declare function runCheck(paths?: string[]): Promise<void>;
|
|
19
|
+
export { runCheck, buildCheckCommand };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CLI fix command - Fix linting issues (wraps ultracite)
|
|
3
|
+
*/
|
|
4
|
+
/** Options for the fix command */
|
|
5
|
+
interface FixOptions {
|
|
6
|
+
paths?: string[];
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Build the ultracite fix command
|
|
10
|
+
* @param options - Command options
|
|
11
|
+
* @returns Array of command arguments
|
|
12
|
+
*/
|
|
13
|
+
declare function buildFixCommand(options: FixOptions): string[];
|
|
14
|
+
/**
|
|
15
|
+
* Run the fix command
|
|
16
|
+
* @param paths - Paths to fix
|
|
17
|
+
*/
|
|
18
|
+
declare function runFix(paths?: string[]): Promise<void>;
|
|
19
|
+
export { runFix, buildFixCommand };
|