From 1b0a2524389b0fb133a405ecfb1cfb2b3dcf9271 Mon Sep 17 00:00:00 2001 From: Omotayo Ishola Date: Mon, 1 Jul 2024 18:18:19 +0100 Subject: [PATCH] removed all chalk dependencies --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index add010e07..50bd98f7a 100644 --- a/index.js +++ b/index.js @@ -158,14 +158,14 @@ class ServerlessPlugin { 'before:logs:logs': () => { /** @type {typeof import('chalk')} */ // @ts-ignore - const chalk = require.main.require('chalk'); + // const chalk = require.main.require('chalk'); utils.log(formatText('View, tail, and search logs from all functions with https://dashboard.bref.sh')); utils.log(); }, 'before:metrics:metrics': () => { /** @type {typeof import('chalk')} */ // @ts-ignore - const chalk = require.main.require('chalk'); + // const chalk = require.main.require('chalk'); utils.log(formatText('View all your application\'s metrics with https://dashboard.bref.sh')); utils.log(); },