From cb34fb473b4666d0188919eda6c6507bf9033cb6 Mon Sep 17 00:00:00 2001 From: danbulant Date: Fri, 21 Feb 2020 17:04:19 +0100 Subject: [PATCH] Test `bpm install chalk` --- test/index.js | 3 ++- test/package.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/test/index.js b/test/index.js index 98af250..417677c 100644 --- a/test/index.js +++ b/test/index.js @@ -1,6 +1,7 @@ const got = require("got"); +const chalk = require("chalk"); console.log("Trying to make request..."); got("http://google.com").then((r) => { - console.log("Got request working!"); + console.log(chalk.blue("Got request working!")); }) \ No newline at end of file diff --git a/test/package.json b/test/package.json index 49554e7..8a8d373 100644 --- a/test/package.json +++ b/test/package.json @@ -11,6 +11,7 @@ "author": "", "license": "ISC", "dependencies": { - "got": "^10.5.7" + "got": "^10.5.7", + "chalk": "^3.0.0" } }