Skip to content

Commit 844b408

Browse files
committed
chore: wip
1 parent 965b50a commit 844b408

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.stacks/core/buddy/src/commands/create.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ async function create(buddy: CLI) {
5151

5252
if (startTime) {
5353
const time = performance.now() - startTime
54-
log.success(green(`Doness in ${time}ms`))
54+
log.success(green(`Done in ${time}ms`))
5555
}
5656

5757
log.info(bold('Welcome to the Stacks Framework! ⚛️'))

.stacks/core/cli/src/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export function outro(text: string, options: OutroOptions, error?: Error | strin
5353
if (options.isError)
5454
log.error(red(`in ${time}${options.useSeconds ? 's' : 'ms'}`))
5555
else
56-
log.success(green(`Dones in ${time}${options.useSeconds ? 's' : 'ms'}`))
56+
log.success(green(`Done in ${time}${options.useSeconds ? 's' : 'ms'}`))
5757
}
5858
}
5959

0 commit comments

Comments
 (0)