| 23 | const FORCE = process.argv.includes("--force"); |
| 24 | |
| 25 | interface IPlan { |
| 26 | source: string | (() => string); |
| 27 | destination: string; |
| 28 | kind: "copy" | "merge-json"; |
| 29 | } |
| 30 | |
| 31 | const C_RESET = "[0m"; |
| 32 | const C_CYAN = "[36m"; |
nothing calls this directly
no outgoing calls
no test coverage detected