create-guilded-bot/packages/cli/src/index.ts

77 lines
2.1 KiB
TypeScript
Raw Normal View History

2022-11-19 17:37:53 +00:00
import fs, { createWriteStream, mkdir, readdir, readdirSync } from "fs";
import { copySync, removeSync } from "fs-extra";
import * as inquirer from "inquirer";
import getPackageManager from "../lib/getPackageManager";
import install from "../lib/installDependencies";
import * as logger from "../utils/logger"
2022-11-19 13:34:00 +00:00
import constants from "../lib/constants"
import getConstant from "../lib/constants";
2022-11-19 17:37:53 +00:00
import stream from "got";
import unzip from "unzip-stream";
2022-11-19 13:34:00 +00:00
const weclomeASCII = getConstant("welcomeMessage")
console.log(weclomeASCII)
inquirer
.prompt([
{
type: "input",
name: "location",
message: "Where should the project be initialized?"
},
{
type: 'list',
name: 'flavor',
message: 'Which flavor?',
choices: ['TypeScript', 'JavaScript'],
filter(val) {
return val.toLowerCase();
},
},
])
.then((answers) => {
mkdir(answers.location, (e) => {
if (e && e.code != "EEXIST") {
logger.error("Failed to create project directory.")
process.exit(1)
}
if (e) {
if (e.code == "EEXIST") {
readdir(answers.location, (_, files) => {
if (files.length) {
logger.error("Directory not empty.")
process.exit(1)
}
})
}
}
})
let packageManager = getPackageManager()
2022-11-19 17:37:53 +00:00
if (answers.flavor == "typescript") {
const TEMPLATE_DOWNLOAD_URL = "https://files.devcomp.xyz/r/create-guilded-app_ts.zip"
const start = () => {
const download = stream(TEMPLATE_DOWNLOAD_URL, { isStream: true }).pipe(createWriteStream(`${answers.location}/create-guilded-bot_ts.zip`));
download.on("finish", () => {
fs.createReadStream(`${answers.location}/create-guilded-bot_ts.zip`)
.pipe(unzip.Extract({ path: `${answers.location}` }))
.on("finish", () => {
removeSync(`${answers.location}/create-guilded-bot_ts.zip`)
2022-11-19 17:37:53 +00:00
logger.success("🚀 Let's get started.")
})
});
};
start();
install(packageManager as "npm" | "pnpm" | "yarn" | null, answers.location)
}
});