(range: string)
| 14 | const shellQuote = (value: string) => `'${value.replaceAll("'", "'\\''")}'` |
| 15 | |
| 16 | const normalizeVersion = (range: string) => { |
| 17 | const match = range.match(/\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?/) |
| 18 | return match?.[0] |
| 19 | } |
| 20 | |
| 21 | export const syncEffectSubtree = Effect.fnUntraced(function*(config: SyncEffectConfig) { |
| 22 | const fs = yield* FileSystem.FileSystem |
no outgoing calls
no test coverage detected
searching dependent graphs…