| 28 | import { copyTo } from "../core/copy.ts"; |
| 29 | |
| 30 | export interface ProjectCreateOptions { |
| 31 | dir: string; |
| 32 | type: string; |
| 33 | title: string; |
| 34 | scaffold: boolean; |
| 35 | engine: string; |
| 36 | kernel?: string; |
| 37 | editor?: string; |
| 38 | venv?: boolean; |
| 39 | condaenv?: boolean; |
| 40 | envPackages?: string[]; |
| 41 | template?: string; |
| 42 | quiet?: boolean; |
| 43 | } |
| 44 | |
| 45 | export async function projectCreate(options: ProjectCreateOptions) { |
| 46 | // read and validate options |
nothing calls this directly
no outgoing calls
no test coverage detected