@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
package/biome.json DELETED
@@ -1,81 +0,0 @@
1
- {
2
- "$schema": "https://biomejs.dev/schemas/2.4.4/schema.json",
3
- "root": false,
4
- "javascript": {
5
- "globals": ["Bun"]
6
- },
7
- "linter": {
8
- "rules": {
9
- "complexity": {
10
- "useLiteralKeys": "off",
11
- "noVoid": "off",
12
- "noExcessiveCognitiveComplexity": "off"
13
- },
14
- "performance": {
15
- "useTopLevelRegex": "off"
16
- },
17
- "style": {
18
- "useBlockStatements": "off"
19
- },
20
- "suspicious": {
21
- "noConsole": "error"
22
- }
23
- }
24
- },
25
- "vcs": {
26
- "enabled": true,
27
- "clientKind": "git",
28
- "useIgnoreFile": true
29
- },
30
- "files": {
31
- "ignoreUnknown": true,
32
- "includes": [
33
- "**",
34
- "!**/node_modules",
35
- "!**/dist",
36
- "!**/.turbo",
37
- "!**/*.gen.ts",
38
- "!registry/registry.json"
39
- ]
40
- },
41
- "overrides": [
42
- {
43
- "includes": [
44
- "packages/*/src/index.ts",
45
- "apps/*/src/index.ts",
46
- "**/index.ts"
47
- ],
48
- "linter": {
49
- "rules": {
50
- "performance": {
51
- "noBarrelFile": "off"
52
- }
53
- }
54
- }
55
- },
56
- {
57
- "includes": ["**/*.test.ts", "**/__tests__/**/*"],
58
- "linter": {
59
- "rules": {
60
- "suspicious": {
61
- "useAwait": "off",
62
- "noConsole": "off"
63
- },
64
- "performance": {
65
- "noDelete": "off"
66
- }
67
- }
68
- }
69
- },
70
- {
71
- "includes": ["apps/**/*.ts", "scripts/**/*.ts", "**/scripts/**/*.ts"],
72
- "linter": {
73
- "rules": {
74
- "suspicious": {
75
- "noConsole": "off"
76
- }
77
- }
78
- }
79
- }
80
- ]
81
- }
@@ -1,4 +0,0 @@
1
- import { createRequire } from "node:module";
2
- var __require = /* @__PURE__ */ createRequire(import.meta.url);
3
-
4
- export { __require };