Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Commit

Permalink
fix: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
phuctm97 committed Jun 13, 2022
1 parent 4ad0ad3 commit 4bbed91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/create.ts
Expand Up @@ -25,7 +25,7 @@ export default async function create(
const example = `example${options.typescript ? "-ts" : ""}`;

console.log(
`Downloading template ${chalk.cyan(example)}. This might take a moment.\n`
`\nDownloading template ${chalk.cyan(example)}. This might take a moment.\n`
);

await downloadAndExtractRepo(projectDirectory, {
Expand All @@ -36,7 +36,7 @@ export default async function create(

await formatProject(projectDirectory);

console.log("Installing packages. This might take a couple of minutes.\n");
console.log("Installing packages. This might take up to a few minutes.\n");

await installDependencies(projectDirectory);

Expand Down Expand Up @@ -69,6 +69,6 @@ export default async function create(
console.log("We suggest that you begin by typing:\n");
console.log(chalk.cyan(" cd"), cdPath);
console.log(
` ${chalk.cyan(`${packageManager} ${useYarn ? "" : "run "}dev`)}\n`
` ${chalk.cyan(`${packageManager} ${useYarn ? "" : "run "}develop`)}\n`
);
}

0 comments on commit 4bbed91

Please sign in to comment.