|
| 1 | +#!/usr/bin/env node |
| 2 | + |
| 3 | +import fs from "node:fs"; |
| 4 | +import path from "node:path"; |
| 5 | +import { fileURLToPath } from "node:url"; |
| 6 | +import minimist from "minimist"; |
| 7 | +import prompts from "prompts"; |
| 8 | +import { cyan, lightGray, lightGreen, lightRed, red } from "kolorist"; |
| 9 | + |
| 10 | +const __dirname = path.dirname(fileURLToPath(import.meta.url)); |
| 11 | + |
| 12 | +let TEMPLATES_DIR = path.resolve(__dirname, "templates"); |
| 13 | + |
| 14 | +if (!fs.existsSync(TEMPLATES_DIR)) { |
| 15 | + TEMPLATES_DIR = path.resolve(__dirname, "../templates"); |
| 16 | +} |
| 17 | + |
| 18 | +const TEMPLATES = [ |
| 19 | + { |
| 20 | + id: "vanilla", |
| 21 | + name: lightGreen("JavaScript"), |
| 22 | + aliases: ["javascript", "js"], |
| 23 | + }, |
| 24 | + { |
| 25 | + id: "vanilla-ts", |
| 26 | + name: lightGreen("TypeScript"), |
| 27 | + aliases: ["typescript", "ts"], |
| 28 | + }, |
| 29 | + { |
| 30 | + id: "react", |
| 31 | + name: cyan("React JavaScript"), |
| 32 | + }, |
| 33 | + { |
| 34 | + id: "react-ts", |
| 35 | + name: cyan("React TypeScript"), |
| 36 | + }, |
| 37 | +]; |
| 38 | + |
| 39 | +const init = async () => { |
| 40 | + const argv = minimist(process.argv.slice(2)); |
| 41 | + |
| 42 | + const questions = []; |
| 43 | + |
| 44 | + if (!argv._[1]) { |
| 45 | + questions.push({ |
| 46 | + type: "text", |
| 47 | + name: "projectName", |
| 48 | + message: "Project Name", |
| 49 | + initial: "verza-scripts", |
| 50 | + min: 1, |
| 51 | + }); |
| 52 | + } |
| 53 | + |
| 54 | + if (!argv._[0]) { |
| 55 | + questions.push({ |
| 56 | + type: "select", |
| 57 | + name: "template", |
| 58 | + message: "Template", |
| 59 | + choices: TEMPLATES.map((template) => ({ |
| 60 | + title: template.name, |
| 61 | + value: template.id, |
| 62 | + })), |
| 63 | + }); |
| 64 | + } |
| 65 | + |
| 66 | + // |
| 67 | + |
| 68 | + let { projectName, template } = await prompts(questions); |
| 69 | + |
| 70 | + projectName = projectName ?? argv._[1]; |
| 71 | + template = template ?? argv._[0]; |
| 72 | + |
| 73 | + if (!projectName || !template) { |
| 74 | + console.log(`\n${red("✖")} Cancelled`); |
| 75 | + return; |
| 76 | + } |
| 77 | + |
| 78 | + const resolvedTemplate = TEMPLATES.find( |
| 79 | + (t) => t.id === template || t.aliases?.includes(template) |
| 80 | + ); |
| 81 | + |
| 82 | + if (!resolvedTemplate) { |
| 83 | + console.log( |
| 84 | + `\n${red("✖")} Invalid template: "${lightGreen( |
| 85 | + template |
| 86 | + )}". Please specify one of:` |
| 87 | + ); |
| 88 | + TEMPLATES.forEach((t) => { |
| 89 | + console.log(` - ${lightGreen(t.id)} (${t.name})`); |
| 90 | + }); |
| 91 | + console.log(); |
| 92 | + return; |
| 93 | + } |
| 94 | + |
| 95 | + const templateId = resolvedTemplate.id; |
| 96 | + |
| 97 | + // |
| 98 | + |
| 99 | + const projectDir = path.join(process.cwd(), projectName); |
| 100 | + const templateDir = path.join(TEMPLATES_DIR, templateId); |
| 101 | + |
| 102 | + // |
| 103 | + |
| 104 | + if (fs.existsSync(projectDir)) { |
| 105 | + console.log( |
| 106 | + `\n${red("✖")} Directory ${lightRed( |
| 107 | + projectName |
| 108 | + )} already exists. Try another name or delete the existing directory.\n` |
| 109 | + ); |
| 110 | + return; |
| 111 | + } |
| 112 | + |
| 113 | + // |
| 114 | + |
| 115 | + copyDir(templateDir, projectDir); |
| 116 | + |
| 117 | + // |
| 118 | + |
| 119 | + // show finished message |
| 120 | + console.log(`\n${lightGreen("✔")} Project created. To get started:\n`); |
| 121 | + console.log(lightGray(` cd ${projectName}`)); |
| 122 | + console.log(lightGray(" npm install")); |
| 123 | + console.log(lightGray(" npm run dev")); |
| 124 | + console.log("\n"); |
| 125 | +}; |
| 126 | + |
| 127 | +const copyDir = (srcDir, destDir) => { |
| 128 | + fs.mkdirSync(destDir, { recursive: true }); |
| 129 | + |
| 130 | + for (const file of fs.readdirSync(srcDir)) { |
| 131 | + const srcFile = path.resolve(srcDir, file); |
| 132 | + const destFile = path.resolve(destDir, file); |
| 133 | + |
| 134 | + copy(srcFile, destFile); |
| 135 | + } |
| 136 | +}; |
| 137 | + |
| 138 | +function copy(src, dest) { |
| 139 | + const stat = fs.statSync(src); |
| 140 | + if (stat.isDirectory()) { |
| 141 | + copyDir(src, dest); |
| 142 | + } else { |
| 143 | + fs.copyFileSync(src, dest); |
| 144 | + } |
| 145 | +} |
| 146 | + |
| 147 | +init(); |
0 commit comments