@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.
Files changed (67) hide show
  1. package/.markdownlint-cli2.jsonc +55 -55
  2. package/README.md +21 -21
  3. package/dist/bun-version-compat.d.ts +2 -0
  4. package/dist/bun-version-compat.js +10 -0
  5. package/dist/cli/check-boundary-invocations.d.ts +34 -0
  6. package/dist/cli/check-boundary-invocations.js +14 -0
  7. package/dist/cli/check-bunup-registry.d.ts +36 -0
  8. package/dist/cli/check-bunup-registry.js +12 -0
  9. package/dist/cli/check-changeset.d.ts +66 -0
  10. package/dist/cli/check-changeset.js +20 -0
  11. package/dist/cli/check-clean-tree.d.ts +36 -0
  12. package/dist/cli/check-clean-tree.js +14 -0
  13. package/dist/cli/check-exports.d.ts +2 -0
  14. package/dist/cli/check-exports.js +14 -0
  15. package/dist/cli/check-markdown-links.d.ts +42 -0
  16. package/dist/cli/check-markdown-links.js +13 -0
  17. package/dist/cli/check-readme-imports.d.ts +60 -0
  18. package/dist/{shared/chunk-7tdgbqb0.js → cli/check-readme-imports.js} +7 -6
  19. package/dist/cli/check-tsdoc.d.ts +2 -0
  20. package/dist/cli/check-tsdoc.js +36 -0
  21. package/dist/cli/check.d.ts +19 -0
  22. package/dist/cli/check.js +10 -0
  23. package/dist/cli/fix.d.ts +19 -0
  24. package/dist/cli/fix.js +10 -0
  25. package/dist/cli/index.js +49 -1218
  26. package/dist/cli/init.d.ts +31 -0
  27. package/dist/cli/init.js +12 -0
  28. package/dist/cli/pre-push.d.ts +60 -0
  29. package/dist/cli/pre-push.js +27 -0
  30. package/dist/cli/upgrade-bun.d.ts +8 -0
  31. package/dist/cli/upgrade-bun.js +9 -0
  32. package/dist/index.d.ts +6 -186
  33. package/dist/index.js +4 -42
  34. package/dist/registry/build.d.ts +4 -0
  35. package/dist/registry/build.js +279 -0
  36. package/dist/registry/index.d.ts +3 -0
  37. package/dist/registry/index.js +1 -0
  38. package/dist/registry/schema.d.ts +2 -0
  39. package/dist/registry/schema.js +28 -0
  40. package/dist/shared/@outfitter/tooling-1hez6j9d.js +21 -0
  41. package/dist/shared/@outfitter/tooling-6cxfdx0q.js +187 -0
  42. package/dist/shared/{chunk-cmde0fwx.js → @outfitter/tooling-875svjnz.js} +16 -31
  43. package/dist/shared/@outfitter/tooling-9ram55dd.js +69 -0
  44. package/dist/shared/@outfitter/tooling-9vs606gq.d.ts +3 -0
  45. package/dist/shared/@outfitter/tooling-a4bfx4be.js +21 -0
  46. package/dist/shared/@outfitter/tooling-amrbp7cm.js +102 -0
  47. package/dist/shared/@outfitter/tooling-ctmgnap5.js +19 -0
  48. package/dist/shared/@outfitter/tooling-d363b88r.js +349 -0
  49. package/dist/shared/@outfitter/tooling-gcdvsqqp.js +73 -0
  50. package/dist/shared/@outfitter/tooling-h04te11c.js +231 -0
  51. package/dist/shared/@outfitter/tooling-ja1zg5yc.js +214 -0
  52. package/dist/shared/@outfitter/tooling-jnrs9rqd.js +4 -0
  53. package/dist/shared/@outfitter/tooling-mkynjra9.js +23 -0
  54. package/dist/shared/@outfitter/tooling-njw4z34x.d.ts +140 -0
  55. package/dist/shared/@outfitter/tooling-pq47jv6t.js +213 -0
  56. package/dist/shared/@outfitter/tooling-sjm8nebx.d.ts +109 -0
  57. package/dist/shared/@outfitter/tooling-vjmhvpjq.d.ts +29 -0
  58. package/dist/shared/@outfitter/tooling-wesswf21.d.ts +59 -0
  59. package/dist/shared/@outfitter/tooling-wwm97f47.js +81 -0
  60. package/dist/version.d.ts +2 -0
  61. package/dist/version.js +8 -0
  62. package/package.json +134 -131
  63. package/registry/registry.json +17 -10
  64. package/tsconfig.preset.bun.json +5 -5
  65. package/tsconfig.preset.json +33 -33
  66. package/biome.json +0 -81
  67. 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,10 @@
1
+ // @bun
2
+ import {
3
+ buildCheckCommand,
4
+ runCheck
5
+ } from "../shared/@outfitter/tooling-a4bfx4be.js";
6
+ import"../shared/@outfitter/tooling-jnrs9rqd.js";
7
+ export {
8
+ runCheck,
9
+ buildCheckCommand
10
+ };
@@ -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 };
@@ -0,0 +1,10 @@
1
+ // @bun
2
+ import {
3
+ buildFixCommand,
4
+ runFix
5
+ } from "../shared/@outfitter/tooling-1hez6j9d.js";
6
+ import"../shared/@outfitter/tooling-jnrs9rqd.js";
7
+ export {
8
+ runFix,
9
+ buildFixCommand
10
+ };