( packages: readonly PackageInternal[], changesets: readonly ChangesetInfoInternal[], changedFiles: readonly string[], fs: FileSystem.FileSystem, path: Path.Path, rootDir: string )
| 958 | ); |
| 959 | |
| 960 | const validateWithRootPackage = ( |
| 961 | packages: readonly PackageInternal[], |
| 962 | changesets: readonly ChangesetInfoInternal[], |
| 963 | changedFiles: readonly string[], |
| 964 | fs: FileSystem.FileSystem, |
| 965 | path: Path.Path, |
| 966 | rootDir: string |
| 967 | ) => |
| 968 | pipe( |
| 969 | readRootPackageJson(fs, path, rootDir), |
| 970 | Effect.flatMap(validateChangesetLogic(packages, changesets, changedFiles, rootDir)) |
| 971 | ); |
| 972 | |
| 973 | const runValidationLogic = ([packages, changesets, changedFiles, [fs, path, rootDir]]: readonly [ |
| 974 | readonly PackageInternal[], |
no test coverage detected