From ca04f1f7b2f5f3d813f65b399c3227445d55d7db Mon Sep 17 00:00:00 2001 From: killerboss Date: Sat, 8 Jul 2023 16:38:38 +0200 Subject: [PATCH] 2023.07.08-1 --- package.json | 2 +- readme.md | 3 +++ src/index.ts | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2fc6e0f..ebcfec8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-cout", - "version": "2023.07.08", + "version": "2023.07.08-1", "description": "Standard output module for JavaScript / TypeScript", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/readme.md b/readme.md index 59f8dbd..5b0fb54 100644 --- a/readme.md +++ b/readme.md @@ -23,6 +23,9 @@ const cout = new default(); // from here equal to MJS example ``` ## Changelogs +### 2023.07.08-1 +- Fix info Emoji + ### v2023.07.08 - Exported the main class as default - Add Stringify to all functions diff --git a/src/index.ts b/src/index.ts index 84edde4..013fead 100644 --- a/src/index.ts +++ b/src/index.ts @@ -48,7 +48,7 @@ export default class cout { type = " " + type; typec = chalk.cyan(type); emoji = "ℹ️ "; - emojic = "ℹ️ "; + emojic = "ℹ️ "; break; case "WARN": stringc = chalk.yellow(string);