aboutsummaryrefslogtreecommitdiff
path: root/packages/upgrade/src/actions/help.ts
blob: 2e25b7e8442bf53b64114f09fef4508f10550caa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { printHelp } from '../messages.js';

export function help() {
	printHelp({
		commandName: '@astrojs/upgrade',
		usage: '[version] [...flags]',
		headline: 'Upgrade Astro dependencies.',
		tables: {
			Flags: [
				['--help (-h)', 'See all available flags.'],
				['--dry-run', 'Walk through steps without executing.'],
			],
		},
	});
}