( changedFiles: readonly string[], packages: readonly PackageInternal[], rootDir: string )
| 848 | }; |
| 849 | |
| 850 | const validateWithNoChangesets = ( |
| 851 | changedFiles: readonly string[], |
| 852 | packages: readonly PackageInternal[], |
| 853 | rootDir: string |
| 854 | ) => |
| 855 | pipe( |
| 856 | areAllChangesDependencyOnly(changedFiles, packages, rootDir), |
| 857 | Effect.flatMap((isDepOnly) => |
| 858 | isDepOnly ? displayDependencyOnlyChanges : displayMissingChangesetError |
| 859 | ) |
| 860 | ); |
| 861 | |
| 862 | const validateCodeChanges = ( |
| 863 | changedFiles: readonly string[], |
no test coverage detected