2023.07.08-1
This commit is contained in:
parent
1338067250
commit
ca04f1f7b2
3 changed files with 5 additions and 2 deletions
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -48,7 +48,7 @@ export default class cout {
|
|||
type = " " + type;
|
||||
typec = chalk.cyan(type);
|
||||
emoji = "ℹ️ ";
|
||||
emojic = "ℹ️ ";
|
||||
emojic = "ℹ️ ";
|
||||
break;
|
||||
case "WARN":
|
||||
stringc = chalk.yellow(string);
|
||||
|
|
Loading…
Reference in a new issue