Skip to content

Commit 9bab349

Browse files
committed
docs: remove \n in console
1 parent e2fa5b3 commit 9bab349

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,10 @@ async function init() {
217217
);
218218
pkg.name = packageName || getProjectName();
219219
write("package.json", JSON.stringify(pkg, null, 2));
220-
console.log(`\n${green("✔")} Created project in ${root}.`);
220+
console.log(`${green("✔")} Created project in ${root}.`);
221221
if (root !== cwd) {
222-
console.log(`\n${green("✔")} To get started:`);
223-
console.log(`\n cd ${dir}`);
222+
console.log(`${green("✔")} To get started:`);
223+
console.log(` cd ${dir}`);
224224
}
225225
switch (packageManager) {
226226
case "yarn":

0 commit comments

Comments
 (0)