(root: string, path: string, body: string)
| 20 | }; |
| 21 | |
| 22 | const write = async (root: string, path: string, body: string) => { |
| 23 | await mkdir(dirname(join(root, path)), { recursive: true }); |
| 24 | await writeFile(join(root, path), body); |
| 25 | }; |
| 26 | |
| 27 | const packageJson = JSON.stringify({ dependencies: { effect: "4.0.0-beta.59", zod: "4.3.6" } }); |
| 28 | const executorJson = JSON.stringify({ description: "Custom tools e2e fixture" }); |