(terminal: Terminal.Terminal)
| 634 | pipe(Terminal.Terminal, Effect.flatMap(showUnpublishableMessages(unpublishable))); |
| 635 | |
| 636 | const displayDocOnlyInfo = (terminal: Terminal.Terminal) => |
| 637 | pipe( |
| 638 | terminal, |
| 639 | (t) => t.display('\n'), |
| 640 | Effect.andThen( |
| 641 | terminal.display('ℹ️ Consider adding a changeset for documentation updates to:\n') |
| 642 | ), |
| 643 | Effect.andThen(terminal.display(' - Track the documentation change in version history\n')), |
| 644 | Effect.andThen(terminal.display(' - Allow users to see docs were updated via npm\n')), |
| 645 | Effect.andThen(terminal.display(' - Prevent potential CI issues\n\n')) |
| 646 | ); |
| 647 | |
| 648 | const showDependencyOnlyMessages = (terminal: Terminal.Terminal) => |
| 649 | pipe( |
no outgoing calls
no test coverage detected