@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
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
|
-
}
|