Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit c8b1fd4

Browse files
author
Je
committed
doc: update command help messages
1 parent a9f9f94 commit c8b1fd4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cli.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import util, { existsDirSync, existsFileSync } from './util.ts'
77
import { version } from './version.ts'
88

99
const commands = {
10-
'init': 'Create a new app',
10+
'init': 'Create a new appliaction',
1111
'dev': 'Start the app in development mode',
1212
'start': 'Start the app in production mode',
13-
'build': 'Build & Export a static site',
13+
'build': 'Build the app to a static site (SSG)',
1414
'upgrade': 'Upgrade Aleph.js command'
1515
}
1616

cli/init.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export default async function (appDir: string, options: Record<string, string |
7777
log.info(`${colors.dim('$')} cd ` + path.basename(appDir))
7878
log.info(`${colors.dim('$')} aleph ${colors.bold('dev')} ${colors.dim('# start the app in `development` mode')}`)
7979
log.info(`${colors.dim('$')} aleph ${colors.bold('start')} ${colors.dim('# start the app in `production` mode')}`)
80-
log.info(`${colors.dim('$')} aleph ${colors.bold('build')} ${colors.dim('# build & export a static site')}`)
80+
log.info(`${colors.dim('$')} aleph ${colors.bold('build')} ${colors.dim('# build the app to a static site (SSG)')}`)
8181
log.info('---')
8282
Deno.exit(0)
8383
}

0 commit comments

Comments
 (0)