| 17 | import { getUserPkgManager } from "~/utils/getUserPkgManager.js"; |
| 18 | |
| 19 | interface CreateProjectOptions { |
| 20 | projectName: string; |
| 21 | packages: PkgInstallerMap; |
| 22 | scopedAppName: string; |
| 23 | noInstall: boolean; |
| 24 | importAlias: string; |
| 25 | appRouter: boolean; |
| 26 | databaseProvider: DatabaseProvider; |
| 27 | } |
| 28 | |
| 29 | export const createProject = async ({ |
| 30 | projectName, |
nothing calls this directly
no outgoing calls
no test coverage detected