Skip to content

Commit

Permalink
docs: remove \n in console
Browse files Browse the repository at this point in the history
  • Loading branch information
wibus-wee committed Dec 20, 2022
1 parent e2fa5b3 commit 9bab349
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@ async function init() {
);
pkg.name = packageName || getProjectName();
write("package.json", JSON.stringify(pkg, null, 2));
console.log(`\n${green("✔")} Created project in ${root}.`);
console.log(`${green("✔")} Created project in ${root}.`);
if (root !== cwd) {
console.log(`\n${green("✔")} To get started:`);
console.log(`\n cd ${dir}`);
console.log(`${green("✔")} To get started:`);
console.log(` cd ${dir}`);
}
switch (packageManager) {
case "yarn":
Expand Down

0 comments on commit 9bab349

Please sign in to comment.