| 26 | } |
| 27 | |
| 28 | interface TargetsOptions { |
| 29 | rootDir: string |
| 30 | packagerName: PackagerName |
| 31 | platform: NodeJS.Platform | undefined |
| 32 | } |
| 33 | const targets = ({ rootDir, packagerName, platform }: TargetsOptions) => { |
| 34 | const cachePaths = [ |
| 35 | { type: "dir", path: path(rootDir, "node_modules") }, |
nothing calls this directly
no outgoing calls
no test coverage detected