@goodbones/cli 0.1.0-beta.6 → 0.1.0-beta.7
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/package.json +3 -3
- package/src/run.ts +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goodbones/cli",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "The architecture CLI for @goodbones/core: check, baseline, coverage, explain and facts over a whole repository with no linter in the loop, including the graph family (cycles, orphans, transitive reach) that only an adapter seeing every file at once can evaluate.",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"effect": "4.0.0-beta.94",
|
|
41
|
-
"@goodbones/core": "0.1.0-beta.
|
|
42
|
-
"@goodbones/typescript": "0.1.0-beta.
|
|
41
|
+
"@goodbones/core": "0.1.0-beta.7",
|
|
42
|
+
"@goodbones/typescript": "0.1.0-beta.7"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/node": "^25.9.4"
|
package/src/run.ts
CHANGED
|
@@ -61,10 +61,10 @@ import { sourceFactsOf } from "./source-facts.js";
|
|
|
61
61
|
// second way to ask the same question — and the only way to write a baseline,
|
|
62
62
|
// since that needs every finding at once rather than one file at a time.
|
|
63
63
|
//
|
|
64
|
-
// It covers all four families. The
|
|
65
|
-
// rather than oxlint's; both adapters meet at the
|
|
66
|
-
// a binding, a member site — so they answer to
|
|
67
|
-
// other.
|
|
64
|
+
// It covers all four families. The ones that need a syntax tree read it through
|
|
65
|
+
// the language pack's own parse rather than oxlint's; both adapters meet at the
|
|
66
|
+
// same vocabulary — a specifier, a binding, a member site — so they answer to
|
|
67
|
+
// the same core rather than to each other.
|
|
68
68
|
|
|
69
69
|
export type CliFailure = { readonly _tag: "CliFailure"; readonly message: string };
|
|
70
70
|
|