@seflless/ghosttown 1.2.2 → 1.2.4
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/bin/assets/ghosts.png +0 -0
- package/bin/ghosttown.js +2 -2
- package/package.json +1 -1
|
Binary file
|
package/bin/ghosttown.js
CHANGED
|
@@ -651,7 +651,7 @@ function printBanner(url) {
|
|
|
651
651
|
const BEIGE = '\x1b[38;2;255;220;150m'; // Warm yellow/beige for values (RGB: 255,220,150)
|
|
652
652
|
const DIM = '\x1b[2m'; // Dimmed text
|
|
653
653
|
|
|
654
|
-
console.log('');
|
|
654
|
+
// console.log('');
|
|
655
655
|
|
|
656
656
|
// Open: URL
|
|
657
657
|
console.log(` ${CYAN}Open:${RESET} ${BEIGE}${url}${RESET}`);
|
|
@@ -693,7 +693,7 @@ process.on('SIGINT', () => {
|
|
|
693
693
|
httpServer.listen(HTTP_PORT, '0.0.0.0', async () => {
|
|
694
694
|
// Display ASCII art banner
|
|
695
695
|
try {
|
|
696
|
-
const imagePath = path.join(__dirname, '
|
|
696
|
+
const imagePath = path.join(__dirname, 'assets', 'ghosts.png');
|
|
697
697
|
if (fs.existsSync(imagePath)) {
|
|
698
698
|
// Welcome text with orange/yellow color (bright yellow, bold)
|
|
699
699
|
console.log('\n \x1b[1;93mWelcome to Ghosttown!\x1b[0m\n');
|