console-toolkit 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -5
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -89,8 +89,9 @@ BSD 3-Clause License
|
|
|
89
89
|
|
|
90
90
|
## Release history
|
|
91
91
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
92
|
+
* 1.2.2 *Updated deps.*
|
|
93
|
+
* 1.2.1 *Added support for `Bun.stringWidth()`.*
|
|
94
|
+
* 1.2.0 *Refactored `strings`.*
|
|
95
|
+
* 1.1.1 *Minor bugfixes in `Table`, some improvements, updated deps.*
|
|
96
|
+
* 1.1.0 *Minor improvements, enhanced `Writer` and `Updater`.*
|
|
97
|
+
* 1.0.0 *Initial release.*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "console-toolkit",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Toolkit to produce a fancy console output (boxes, tables, charts, colors).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -18,7 +18,10 @@
|
|
|
18
18
|
"./style": "./src/style.js"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
-
"test": "tape6 --flags FO"
|
|
21
|
+
"test": "tape6 --flags FO",
|
|
22
|
+
"test:bun": "tape6-bun --flags FO",
|
|
23
|
+
"test:deno-original": "tape6-deno --flags FO",
|
|
24
|
+
"test:deno": "deno run -A `tape6-runner main` --flags FO"
|
|
22
25
|
},
|
|
23
26
|
"github": "http://github.com/uhop/console-toolkit",
|
|
24
27
|
"repository": {
|
|
@@ -58,8 +61,8 @@
|
|
|
58
61
|
]
|
|
59
62
|
},
|
|
60
63
|
"devDependencies": {
|
|
61
|
-
"emoji-regex": "^10.
|
|
64
|
+
"emoji-regex": "^10.4.0",
|
|
62
65
|
"get-east-asian-width": "^1.2.0",
|
|
63
|
-
"tape-six": "^0.
|
|
66
|
+
"tape-six": "^0.12.2"
|
|
64
67
|
}
|
|
65
68
|
}
|