| 7 | import { curryRunPkgManagerInstall } from "~/utils/runPkgManagerInstall.js"; |
| 8 | |
| 9 | interface CreateProjectOptions { |
| 10 | projectName: string; |
| 11 | packages: PkgInstallerMap; |
| 12 | noInstall: boolean; |
| 13 | } |
| 14 | |
| 15 | export const createProject = async ({ |
| 16 | projectName, |
nothing calls this directly
no outgoing calls
no test coverage detected