no-mistakes 0.63.0 → 0.64.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.
|
@@ -100,6 +100,12 @@ export type AnalyzeProjectReportRequest =
|
|
|
100
100
|
type: "resolveCheck";
|
|
101
101
|
id?: string;
|
|
102
102
|
} & BatchedQueryFileOptions<ResolveCheckOptions | ResolveCheckFilesOptions>)
|
|
103
|
+
| {
|
|
104
|
+
/** Checks the union of seed and reachable files from dependency reports in this request. */
|
|
105
|
+
type: "resolveCheckDependencies";
|
|
106
|
+
id?: string;
|
|
107
|
+
dependencyReportIds: string[];
|
|
108
|
+
}
|
|
103
109
|
| ({ type: "fetches"; id?: string } & BatchedRootConfigOptions<FetchesOptions>)
|
|
104
110
|
| ({ type: "dataPw"; id?: string } & BatchedRootConfigOptions<DataPwOptions>)
|
|
105
111
|
| ({ type: "registryExtension"; id?: string } & Omit<RegistryExtensionOptions, "root">)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "no-mistakes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.64.0",
|
|
4
4
|
"description": "Deterministic impact maps, test plans, Playwright coverage, and repository checks for coding agents",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
47
|
"optionalDependencies": {
|
|
48
|
-
"no-mistakes-darwin-arm64": "0.
|
|
49
|
-
"no-mistakes-linux-arm64-gnu": "0.
|
|
50
|
-
"no-mistakes-linux-x64-gnu": "0.
|
|
51
|
-
"no-mistakes-win32-x64-msvc": "0.
|
|
48
|
+
"no-mistakes-darwin-arm64": "0.64.0",
|
|
49
|
+
"no-mistakes-linux-arm64-gnu": "0.64.0",
|
|
50
|
+
"no-mistakes-linux-x64-gnu": "0.64.0",
|
|
51
|
+
"no-mistakes-win32-x64-msvc": "0.64.0"
|
|
52
52
|
}
|
|
53
53
|
}
|