(path: string, source: string)
| 93 | }; |
| 94 | |
| 95 | const sourceRef = (path: string, source: string): Effect.Effect<ModuleSourceRef> => |
| 96 | sha256Hex(source).pipe(Effect.map((sourceHash) => ({ path, sourceHash }))); |
| 97 | |
| 98 | const isPublishError = Predicate.isTagged("PublishError") as ( |
| 99 | value: unknown, |