[ci] format
This commit is contained in:
parent
641b6d7d58
commit
e35bc26186
1 changed files with 13 additions and 11 deletions
|
@ -1,7 +1,6 @@
|
||||||
/* eslint no-console: 'off' */
|
/* eslint no-console: 'off' */
|
||||||
import { color, generateProjectName, label, say } from '@astrojs/cli-kit';
|
import { color, generateProjectName, label, say } from '@astrojs/cli-kit';
|
||||||
import { forceUnicode } from '@astrojs/cli-kit/utils';
|
import { forceUnicode, random } from '@astrojs/cli-kit/utils';
|
||||||
import { random } from '@astrojs/cli-kit/utils';
|
|
||||||
import { assign, parse, stringify } from 'comment-json';
|
import { assign, parse, stringify } from 'comment-json';
|
||||||
import { execa, execaCommand } from 'execa';
|
import { execa, execaCommand } from 'execa';
|
||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
|
@ -96,7 +95,8 @@ export async function main() {
|
||||||
|
|
||||||
logger.debug('Verbose logging turned on');
|
logger.debug('Verbose logging turned on');
|
||||||
if (!args.skipHouston) {
|
if (!args.skipHouston) {
|
||||||
await say([
|
await say(
|
||||||
|
[
|
||||||
[
|
[
|
||||||
'Welcome',
|
'Welcome',
|
||||||
'to',
|
'to',
|
||||||
|
@ -105,7 +105,9 @@ export async function main() {
|
||||||
`${username}!`,
|
`${username}!`,
|
||||||
],
|
],
|
||||||
random(welcome),
|
random(welcome),
|
||||||
], { hat: args.fancy ? '🎩' : undefined });
|
],
|
||||||
|
{ hat: args.fancy ? '🎩' : undefined }
|
||||||
|
);
|
||||||
await banner(version);
|
await banner(version);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue