Skip to content

Commit 8a1c602

Browse files
fix(create-app): Adds a newline before "Scaffolding project in..." (#1945)
1 parent c7fef51 commit 8a1c602

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/create-app/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ async function init() {
4848
}
4949

5050
const root = path.join(cwd, targetDir)
51-
console.log(`Scaffolding project in ${root}...`)
51+
console.log(`\nScaffolding project in ${root}...`)
5252

5353
if (!fs.existsSync(root)) {
5454
fs.mkdirSync(root, { recursive: true })

0 commit comments

Comments
 (0)