2023.07.08-1

This commit is contained in:
killerboss 2023-07-08 16:38:38 +02:00
parent 1338067250
commit ca04f1f7b2
3 changed files with 5 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "node-cout", "name": "node-cout",
"version": "2023.07.08", "version": "2023.07.08-1",
"description": "Standard output module for JavaScript / TypeScript", "description": "Standard output module for JavaScript / TypeScript",
"main": "build/index.js", "main": "build/index.js",
"types": "build/index.d.ts", "types": "build/index.d.ts",

View file

@ -23,6 +23,9 @@ const cout = new default(); // from here equal to MJS example
``` ```
## Changelogs ## Changelogs
### 2023.07.08-1
- Fix info Emoji
### v2023.07.08 ### v2023.07.08
- Exported the main class as default - Exported the main class as default
- Add Stringify to all functions - Add Stringify to all functions

View file

@ -48,7 +48,7 @@ export default class cout {
type = " " + type; type = " " + type;
typec = chalk.cyan(type); typec = chalk.cyan(type);
emoji = " "; emoji = " ";
emojic = " "; emojic = " ";
break; break;
case "WARN": case "WARN":
stringc = chalk.yellow(string); stringc = chalk.yellow(string);