hyperweb-io / hyperweb-io/create-hyperweb-app

new motd

Abierto
#33 3 comentarios 0 reacciones 0 asignados Ver en GitHub
Lenguaje dominante
TypeScript
Estrellas
16
Forks
5
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

could be fun while install is happening, and to replace our motd with this:

```ts
// @ts-nocheck

import chalk from 'chalk';
import ora from 'ora';
import figlet from 'figlet';

const logo = `
..................................................
..........................-.......................
.......................-===-......................
....................-======-......-...............
.................-=========-...-===-..............
...............============-..-====-..............
..............-=====-.-====-..-====-..............
..............-====-..-====-..-====-..............
..............-====-..-==-....-====-..............
..............-====-..........-====-..............
..............-====-....-==-..-====-..............
..............-====-..-====-..-====-..............
..............-====-..-====-.-=====-..............
..............-====-..-============...............
..............-===-...-=========-.................
...............-......-======-....................
......................-===-.......................
.......................-..........................
..................................................
`;

const spinner = ora({
text: chalk.gray('Spinning up your future...'),
spinner: 'bouncingBall',
}).start();

setTimeout(() => {
spinner.succeed(chalk.green('Welcome to Hyperweb 🕸️'));

console.log(
chalk.cyanBright.bold(
figlet.textSync('Hyperweb', { font: 'Standard', horizontalLayout: 'default' })
)
);

console.log(chalk.cyanBright.bold(logo));
console.log(
chalk.bold.white('\n🚀 Let’s build something legendary.')
);
console.log(chalk.gray('Type ') + chalk.yellow('npm run dev') + chalk.gray(' to get started.\n'));
}, 1800);
```

Guía de contribución

No hay ninguna guía de contribución indexada para este repositorio

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.