nine-hundred 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import { isFirstRun, runInstall } from './install.js';
|
|
|
11
11
|
const packageJsonPath = fileURLToPath(new URL('../package.json', import.meta.url));
|
|
12
12
|
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
|
|
13
13
|
function renderWelcome() {
|
|
14
|
-
const title = figlet.textSync(
|
|
14
|
+
const title = figlet.textSync('900', { horizontalLayout: 'fitted' });
|
|
15
15
|
const author = typeof packageJson.author === 'string' ? packageJson.author : packageJson.author?.name;
|
|
16
16
|
const maxLabelWidth = 12;
|
|
17
17
|
const label = (text) => chalk.bold(text.padEnd(maxLabelWidth));
|