(source: string)
| 17 | import type { AppSourceRecord, AppsStore } from "./store"; |
| 18 | |
| 19 | const bundle = (source: string) => |
| 20 | bundleEntry({ |
| 21 | files: new Map([["tools/sync.ts", source]]), |
| 22 | entry: "tools/sync.ts", |
| 23 | }); |
| 24 | |
| 25 | const localAppDir = (toolName: string, message: string) => |
| 26 | Effect.acquireRelease( |
no test coverage detected