fallow 2.77.0 → 2.78.0
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 +9 -9
- package/schema.json +1 -1
- package/types/output-contract.d.ts +32 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fallow",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.78.0",
|
|
4
4
|
"description": "Codebase intelligence for TypeScript and JavaScript. Finds unused code, duplication, circular dependencies, complexity hotspots, and architecture drift. Optional runtime intelligence layer (Fallow Runtime) adds production execution evidence. Rust-native, sub-second, 95 framework plugins.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -74,13 +74,13 @@
|
|
|
74
74
|
"@tanstack/intent": "0.0.41"
|
|
75
75
|
},
|
|
76
76
|
"optionalDependencies": {
|
|
77
|
-
"@fallow-cli/darwin-arm64": "2.
|
|
78
|
-
"@fallow-cli/darwin-x64": "2.
|
|
79
|
-
"@fallow-cli/linux-x64-gnu": "2.
|
|
80
|
-
"@fallow-cli/linux-arm64-gnu": "2.
|
|
81
|
-
"@fallow-cli/linux-x64-musl": "2.
|
|
82
|
-
"@fallow-cli/linux-arm64-musl": "2.
|
|
83
|
-
"@fallow-cli/win32-arm64-msvc": "2.
|
|
84
|
-
"@fallow-cli/win32-x64-msvc": "2.
|
|
77
|
+
"@fallow-cli/darwin-arm64": "2.78.0",
|
|
78
|
+
"@fallow-cli/darwin-x64": "2.78.0",
|
|
79
|
+
"@fallow-cli/linux-x64-gnu": "2.78.0",
|
|
80
|
+
"@fallow-cli/linux-arm64-gnu": "2.78.0",
|
|
81
|
+
"@fallow-cli/linux-x64-musl": "2.78.0",
|
|
82
|
+
"@fallow-cli/linux-arm64-musl": "2.78.0",
|
|
83
|
+
"@fallow-cli/win32-arm64-msvc": "2.78.0",
|
|
84
|
+
"@fallow-cli/win32-x64-msvc": "2.78.0"
|
|
85
85
|
}
|
|
86
86
|
}
|
package/schema.json
CHANGED
|
@@ -1142,7 +1142,7 @@
|
|
|
1142
1142
|
"type": "object",
|
|
1143
1143
|
"properties": {
|
|
1144
1144
|
"sdkPatterns": {
|
|
1145
|
-
"description": "Additional SDK call patterns to detect as feature flags.\nThese are merged with the built-in patterns
|
|
1145
|
+
"description": "Additional SDK call patterns to detect as feature flags.\nThese are merged with the built-in patterns for common providers\nincluding LaunchDarkly, Statsig, Unleash, GrowthBook, Split, PostHog,\nVercel Flags, ConfigCat, Flagsmith, Optimizely, and Eppo.",
|
|
1146
1146
|
"type": "array",
|
|
1147
1147
|
"items": {
|
|
1148
1148
|
"$ref": "#/$defs/SdkPattern"
|
|
@@ -2169,6 +2169,12 @@ export interface Meta {
|
|
|
2169
2169
|
* URL to the documentation page for this command.
|
|
2170
2170
|
*/
|
|
2171
2171
|
docs?: (string | null)
|
|
2172
|
+
/**
|
|
2173
|
+
* Per-field definitions for envelope fields and action payload fields.
|
|
2174
|
+
*/
|
|
2175
|
+
field_definitions?: {
|
|
2176
|
+
[k: string]: string
|
|
2177
|
+
}
|
|
2172
2178
|
/**
|
|
2173
2179
|
* Per-metric definitions: name, description, range, interpretation.
|
|
2174
2180
|
*/
|
|
@@ -4033,15 +4039,15 @@ export interface TargetEvidence {
|
|
|
4033
4039
|
/**
|
|
4034
4040
|
* Names of unused exports (populated for `RemoveDeadCode` targets).
|
|
4035
4041
|
*/
|
|
4036
|
-
unused_exports
|
|
4042
|
+
unused_exports?: string[]
|
|
4037
4043
|
/**
|
|
4038
4044
|
* Complex functions with line numbers and cognitive scores (populated for `ExtractComplexFunctions`).
|
|
4039
4045
|
*/
|
|
4040
|
-
complex_functions
|
|
4046
|
+
complex_functions?: EvidenceFunction[]
|
|
4041
4047
|
/**
|
|
4042
4048
|
* Files forming the import cycle (populated for `BreakCircularDependency` targets).
|
|
4043
4049
|
*/
|
|
4044
|
-
cycle_path
|
|
4050
|
+
cycle_path?: string[]
|
|
4045
4051
|
}
|
|
4046
4052
|
/**
|
|
4047
4053
|
* A function referenced in target evidence.
|
|
@@ -5479,6 +5485,12 @@ export interface CombinedOutput {
|
|
|
5479
5485
|
schema_version: SchemaVersion
|
|
5480
5486
|
version: ToolVersion
|
|
5481
5487
|
elapsed_ms: ElapsedMs
|
|
5488
|
+
/**
|
|
5489
|
+
* Sectioned `_meta` block emitted only when `--explain` is passed.
|
|
5490
|
+
* Contains `check`, `dupes`, and/or `health` keys matching the analyses
|
|
5491
|
+
* enabled for the combined run.
|
|
5492
|
+
*/
|
|
5493
|
+
_meta?: (CombinedMeta | null)
|
|
5482
5494
|
/**
|
|
5483
5495
|
* Dead-code analysis sub-envelope. Absent when `--skip check`.
|
|
5484
5496
|
*/
|
|
@@ -5496,6 +5508,23 @@ dupes?: (DupesReportPayload | null)
|
|
|
5496
5508
|
*/
|
|
5497
5509
|
health?: (HealthReport | null)
|
|
5498
5510
|
}
|
|
5511
|
+
/**
|
|
5512
|
+
* Sectioned `_meta` block for the bare combined JSON envelope.
|
|
5513
|
+
*/
|
|
5514
|
+
export interface CombinedMeta {
|
|
5515
|
+
/**
|
|
5516
|
+
* Dead-code metadata from `crate::explain::check_meta()`.
|
|
5517
|
+
*/
|
|
5518
|
+
check?: (Meta | null)
|
|
5519
|
+
/**
|
|
5520
|
+
* Duplication metadata from `crate::explain::dupes_meta()`.
|
|
5521
|
+
*/
|
|
5522
|
+
dupes?: (Meta | null)
|
|
5523
|
+
/**
|
|
5524
|
+
* Health metadata from `crate::explain::health_meta()`.
|
|
5525
|
+
*/
|
|
5526
|
+
health?: (Meta | null)
|
|
5527
|
+
}
|
|
5499
5528
|
/**
|
|
5500
5529
|
* Single CodeClimate-compatible issue inside [`CodeClimateOutput`].
|
|
5501
5530
|
*/
|