( dir: string, forgeConfig: ResolvedForgeConfig, )
| 11 | |
| 12 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 13 | export const readMutatedPackageJson = async ( |
| 14 | dir: string, |
| 15 | forgeConfig: ResolvedForgeConfig, |
| 16 | ): Promise<any> => |
| 17 | runMutatingHook( |
| 18 | forgeConfig, |
| 19 | 'readPackageJson', |
| 20 | await readRawPackageJson(dir), |
| 21 | ); |
no test coverage detected