no-mistakes 0.64.0 → 0.64.2

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.
@@ -105,6 +105,12 @@ export type AnalyzeProjectReportRequest =
105
105
  type: "resolveCheckDependencies";
106
106
  id?: string;
107
107
  dependencyReportIds: string[];
108
+ /** Project root. Defaults to the current working directory. */
109
+ root?: string;
110
+ /** Path to tsconfig.json for alias resolution. Searched upward if omitted. */
111
+ tsconfig?: string;
112
+ /** Path to the no-mistakes config file (e.g. .no-mistakes.yml). Auto-discovered in root if omitted. */
113
+ config?: string;
108
114
  }
109
115
  | ({ type: "fetches"; id?: string } & BatchedRootConfigOptions<FetchesOptions>)
110
116
  | ({ type: "dataPw"; id?: string } & BatchedRootConfigOptions<DataPwOptions>)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "no-mistakes",
3
- "version": "0.64.0",
3
+ "version": "0.64.2",
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.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"
48
+ "no-mistakes-darwin-arm64": "0.64.2",
49
+ "no-mistakes-linux-arm64-gnu": "0.64.2",
50
+ "no-mistakes-linux-x64-gnu": "0.64.2",
51
+ "no-mistakes-win32-x64-msvc": "0.64.2"
52
52
  }
53
53
  }