(declared: Record<string, number>)
| 38 | }); |
| 39 | |
| 40 | function writeProfile(declared: Record<string, number>): void { |
| 41 | const p = path.join(stateRoot, 'developer-profile.json'); |
| 42 | fs.writeFileSync(p, JSON.stringify({ declared }, null, 2)); |
| 43 | } |
| 44 | |
| 45 | // ---------------------------------------------------------------------- |
| 46 | // primaryDimensionFor — kebab→underscore mapping |
no outgoing calls
no test coverage detected