(fs: FileSystem.FileSystem, path: Path.Path, rootDir: string)
| 947 | const parseRootPackageJson = (content: string) => JSON.parse(content); |
| 948 | |
| 949 | const readRootPackageJson = (fs: FileSystem.FileSystem, path: Path.Path, rootDir: string) => |
| 950 | pipe(path.join(rootDir, 'package.json'), fs.readFileString, Effect.map(parseRootPackageJson)); |
| 951 | |
| 952 | const displayValidationStart = () => |
| 953 | pipe( |
no outgoing calls
no test coverage detected