Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/constants/help.constants.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import {magenta} from 'kleur';

export const CLEAR_DESCRIPTION =
'Clear existing dapp code by removing JavaScript, HTML, CSS, and other files from your satellite.';
'Clear existing app code by removing JavaScript, HTML, CSS, and other files from your satellite.';
export const CONFIG_DESCRIPTION = 'Apply configuration to satellite.';
export const DEPLOY_DESCRIPTION = 'Deploy your dapp to your satellite.';
export const DEPLOY_DESCRIPTION = 'Deploy your app to your satellite.';
export const DEV_DESCRIPTION =
'Handle development tasks like building serverless functions or running a local Internet Computer instance.';
export const INIT_DESCRIPTION = 'Set up your project.';
Expand Down
2 changes: 1 addition & 1 deletion src/help/clear.help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {TITLE} from './help';
const usage = `Usage: ${green('juno')} ${cyan('clear')} ${yellow('[options]')}

Options:
${yellow('-f, --fullPath')} Clear a particular file of your dapp.
${yellow('-f, --fullPath')} Clear a particular file of your app.
${helpMode}
${yellow('-h, --help')} Output usage information.`;

Expand Down
2 changes: 1 addition & 1 deletion src/help/deploy.help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {TITLE} from './help';
const usage = `Usage: ${green('juno')} ${cyan('deploy')} ${yellow('[options]')}

Options:
${yellow('-c, --clear')} Clear existing dapp files before proceeding with deployment.
${yellow('-c, --clear')} Clear existing app files before proceeding with deployment.
${helpMode}
${yellow('-h, --help')} Output usage information.`;

Expand Down
2 changes: 1 addition & 1 deletion src/services/clear.services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const clear = async (args?: string[]) => {

const satellite = await satelliteParameters({satellite: satelliteConfig, env});

const spinner = ora('Clearing dapp assets...').start();
const spinner = ora('Clearing app assets...').start();

try {
// TODO: to be removed. Workaround as temporary solution of https://github.com/junobuild/juno/issues/484.
Expand Down
4 changes: 2 additions & 2 deletions src/services/init.services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ const promptSatellites = async (satellites: CliSatelliteConfig[]): Promise<strin
const {satellite}: {satellite: string} = await prompts({
type: 'select',
name: 'satellite',
message: 'Which satellite should be linked with this dapp?',
message: 'Which satellite should be linked with this app?',
choices: [
...satellites.map(({p, n}) => ({title: n, value: p})),
{title: '<not listed, manual entry>', value: '_manual_'}
Expand Down Expand Up @@ -228,7 +228,7 @@ const promptOrbiters = async (orbiters: CliOrbiterConfig[]): Promise<string> =>
const {orbiter}: {orbiter: string} = await prompts({
type: 'select',
name: 'orbiter',
message: 'Which orbiter do you use for the analytics in this dapp?',
message: 'Which orbiter do you use for the analytics in this app?',
choices: [
...orbiters.map(({p, n}) => ({title: n ?? p, value: p})),
{title: '<none>', value: '_none_'}
Expand Down