From e2c866890d68a37f85e32d472843097732fa554c Mon Sep 17 00:00:00 2001 From: IrosTheBeggar Date: Fri, 19 Feb 2021 22:51:03 -0500 Subject: [PATCH] remove dep --- cli-boot-wrapper.js | 14 +++++--------- package.json | 1 - 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/cli-boot-wrapper.js b/cli-boot-wrapper.js index defb282..d85f611 100755 --- a/cli-boot-wrapper.js +++ b/cli-boot-wrapper.js @@ -13,16 +13,15 @@ program .option('-j, --json ', 'Specify JSON Boot File', require('path').join(__dirname, 'save/conf/default.json')) .parse(process.argv); -const colors = require('colors'); console.clear(); -console.log(colors.red(` +console.log(` ____ _ _ __ ___ / ___|| |_ _ __ ___ __ _ _ __ ___ | '_ \` _ \\\\___ \\| __| '__/ _ \\/ _\` | '_ \` _ \\ | | | | | |___) | |_| | | __/ (_| | | | | | | - |_| |_| |_|____/ \\__|_| \\___|\\__,_|_| |_| |_|`)); + |_| |_| |_|____/ \\__|_| \\___|\\__,_|_| |_| |_|`); console.log(); -console.log(colors.bold.red('v5.0-alpha')); +console.log('v5.0-alpha'); console.log(); console.log('mStream Server is undergoing some changes. Some things may break. Please expect the following:') console.log('-- CLI Wizard will be removed and replaced with a UI tool'); @@ -34,11 +33,8 @@ console.log('-- A New Admin Panel where you can set update server configurations console.log('-- Fog Machine integration (https://fog.fm). FM is an optional feature to make mStream even easier to deploy'); console.log('-- A lot of code cleanup'); console.log(); -console.log('Thanks for using mStream'); -console.log('Paul Sori'); -console.log(); -console.log(colors.bold('Have questions about v5? Chat with me on Discord to find out more:')); -console.log(colors.bold('https://discord.gg/AM896Rr')); +console.log('Have questions about v5? Chat with me on Discord to find out more:'); +console.log('https://discord.gg/AM896Rr'); console.log(); // Boot the server diff --git a/package.json b/package.json index 2a3d874..4e7b738 100644 --- a/package.json +++ b/package.json @@ -88,7 +88,6 @@ "axios": "^0.21.1", "body-parser": "^1.19.0", "busboy": "^0.3.1", - "colors": "^1.4.0", "commander": "^6.2.1", "express": "^4.17.1", "fast-xml-parser": "^3.17.6",