@omfalos/mokosh 0.1.7 → 0.1.9
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/README.md +1 -1
- package/dist/cli.js +23 -23
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +23 -23
- package/dist/cli.mjs.map +1 -1
- package/dist/index.d.mts +27 -3
- package/dist/index.d.ts +27 -3
- package/dist/index.js +15 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -15
- package/dist/index.mjs.map +1 -1
- package/dist/mcp.js +16 -16
- package/dist/mcp.js.map +1 -1
- package/dist/mcp.mjs +16 -16
- package/dist/mcp.mjs.map +1 -1
- package/package.json +9 -6
package/README.md
CHANGED
|
@@ -225,7 +225,7 @@ npx @omfalos/mokosh --init-config
|
|
|
225
225
|
| `testPatterns` | `string[]` | Extra basename substrings that classify a file as `"test"` |
|
|
226
226
|
| `testLibraries` | `string[]` | Extra import names that classify a file as `"test"` |
|
|
227
227
|
| `barrelThreshold` | `number` | Export-ratio threshold for `"barrel"` detection (default `0.8`) |
|
|
228
|
-
| `gitStats` | `boolean` | When `true`, enriches each cache-missed node with `commitCount90d` and `lastAuthor` via `git log
|
|
228
|
+
| `gitStats` | `boolean` | When `true`, enriches each cache-missed node with `commitCount90d` and `lastAuthor` via two batched `git log` calls per build. Off by default. |
|
|
229
229
|
| `coverageReportPath` | `string` | Path (relative to project root) to an Istanbul `coverage-summary.json`. When set, each node gets a `coveragePct` field. |
|
|
230
230
|
| `coverageThreshold` | `number` | Line-coverage % below which `--find-uncovered` / `find_uncovered` flags a file. Default: `80`. |
|
|
231
231
|
| `tagApplier` | `{ framework?, frameworkOverrides? }` | Configures `--apply-tags` output format. `framework` is the fallback test framework (`vitest` \| `playwright` \| `cypress` \| `jest`) used when a file's own imports don't reveal one; `frameworkOverrides` maps path-glob patterns to a framework, checked before the top-level fallback. See [ADR-008](./docs/adr-008-tag-applier-strategies.md). |
|