💬 Remove some references to melon

This commit is contained in:
trickypr 2022-04-18 13:16:14 +10:00
parent 69c55dbf9e
commit 5e505b8ad0

View file

@ -6,7 +6,7 @@ import { Cmd } from './types'
export const commands: Cmd[] = [ export const commands: Cmd[] = [
{ {
cmd: 'bootstrap', cmd: 'bootstrap',
description: 'Bootstrap the melon app.', description: 'Bootstrap the gluon app.',
requestController: async () => requestController: async () =>
(await import('./commands/bootstrap')).bootstrap, (await import('./commands/bootstrap')).bootstrap,
}, },
@ -14,7 +14,7 @@ export const commands: Cmd[] = [
cmd: 'build', cmd: 'build',
aliases: ['b'], aliases: ['b'],
description: description:
'Build the melon app. Specify the OS param for cross-platform builds.', 'Build the gluon app. Specify the OS param for cross-platform builds.',
options: [ options: [
{ {
arg: '--u, --ui', arg: '--u, --ui',
@ -117,7 +117,7 @@ export const commands: Cmd[] = [
}, },
{ {
cmd: 'setup-project', cmd: 'setup-project',
description: 'Sets up a melon project for the first time', description: 'Sets up a gluon project for the first time',
requestController: async () => requestController: async () =>
(await import('./commands/setupProject')).setupProject, (await import('./commands/setupProject')).setupProject,
}, },