mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
feat: add Ctrl+C interrupt handling
This commit is contained in:
@@ -4,6 +4,7 @@ import fs from "fs-extra";
|
||||
import ora from "ora";
|
||||
import { setupTurso } from "./helpers/db-setup";
|
||||
import type { ProjectOptions } from "./types";
|
||||
import { logger } from "./utils/logger";
|
||||
|
||||
export async function createProject(options: ProjectOptions) {
|
||||
const spinner = ora("Creating project directory...").start();
|
||||
@@ -41,7 +42,7 @@ export async function createProject(options: ProjectOptions) {
|
||||
console.log(" bun dev");
|
||||
} catch (error) {
|
||||
spinner.fail("Failed to create project");
|
||||
console.error(error);
|
||||
logger.error("Error during project creation:", error);
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@ import { confirm, input } from "@inquirer/prompts";
|
||||
import { execa } from "execa";
|
||||
import fs from "fs-extra";
|
||||
import ora, { type Ora } from "ora";
|
||||
import { logger } from "../utils/logger";
|
||||
|
||||
async function isTursoInstalled() {
|
||||
try {
|
||||
@@ -48,10 +49,18 @@ async function installTursoCLI(isMac: boolean, spinner: Ora) {
|
||||
await execa("turso", ["auth", "login"]);
|
||||
spinner.succeed("Logged in to Turso!");
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
if (error instanceof Error && error.message.includes("User force closed")) {
|
||||
spinner.stop();
|
||||
console.log("\n");
|
||||
logger.warn("Turso CLI installation cancelled by user");
|
||||
throw error;
|
||||
}
|
||||
logger.error("Error during Turso CLI installation:", error);
|
||||
spinner.fail(
|
||||
"Failed to install Turso CLI. Proceeding with manual setup...",
|
||||
);
|
||||
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -108,7 +117,7 @@ TURSO_AUTH_TOKEN="${authToken.trim()}"`;
|
||||
spinner.succeed("Turso database configured successfully!");
|
||||
return;
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
logger.error("Error during Turso database creation:", error);
|
||||
spinner.fail(
|
||||
"Failed to install Turso CLI. Proceeding with manual setup...",
|
||||
);
|
||||
|
||||
@@ -4,10 +4,12 @@ import { Command } from "commander";
|
||||
import { createProject } from "./create-project";
|
||||
import { renderTitle } from "./render-title";
|
||||
import type { ProjectDatabase, ProjectFeature } from "./types";
|
||||
import { logger } from "./utils/logger";
|
||||
|
||||
const program = new Command();
|
||||
|
||||
async function main() {
|
||||
try {
|
||||
renderTitle();
|
||||
|
||||
console.log(chalk.bold("\n🚀 Creating a new Better-T Stack project...\n"));
|
||||
@@ -70,8 +72,23 @@ async function main() {
|
||||
};
|
||||
|
||||
await createProject(projectOptions);
|
||||
} catch (error) {
|
||||
if (error instanceof Error && error.message.includes("User force closed")) {
|
||||
console.log("\n");
|
||||
logger.warn("Operation cancelled by user");
|
||||
process.exit(0);
|
||||
}
|
||||
logger.error("An unexpected error occurred:", error);
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
process.on("SIGINT", () => {
|
||||
console.log("\n");
|
||||
logger.warn("Operation cancelled by user");
|
||||
process.exit(0);
|
||||
});
|
||||
|
||||
program
|
||||
.name("create-better-t-stack")
|
||||
.description("Create a new Better-T Stack project")
|
||||
|
||||
16
apps/cli/src/utils/logger.ts
Normal file
16
apps/cli/src/utils/logger.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import chalk from "chalk";
|
||||
|
||||
export const logger = {
|
||||
error(...args: unknown[]) {
|
||||
console.log(chalk.red(...args));
|
||||
},
|
||||
warn(...args: unknown[]) {
|
||||
console.log(chalk.yellow(...args));
|
||||
},
|
||||
info(...args: unknown[]) {
|
||||
console.log(chalk.cyan(...args));
|
||||
},
|
||||
success(...args: unknown[]) {
|
||||
console.log(chalk.green(...args));
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user