@aurodesignsystem/auro-hyperlink
Version:
auro-hyperlink HTML custom element
29 lines (21 loc) • 1.09 kB
JavaScript
import chalk from 'chalk';
import { createRequire } from 'node:module';
const require = createRequire(import.meta.url);
const pjson = require('../package.json');
console.log(chalk.hex('#f26135')(`
_______ __ __ __
| __|.---.-.--.--. | |--.-----.| | |.-----.
|__ || _ | | | | | -__|| | || _ |
|_______||___._|___ | |__|__|_____||__|__||_____|
|_____|
__ _______ __
| |_.-----. | _ |.--.--.----.-----.| |
| _| _ | | || | | _| _ ||__|
|____|_____| |___|___||_____|__| |_____||__|
╭ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ──────────────────────────────╮
Thanks for installing the latest version
of `) + chalk.hex('#ffd200').bold(`${pjson.name} v${pjson.version}.`) + chalk.hex('#f26135')(`
╰─────────────────────────────── ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─╯
`)
);
;