console-toolkit 1.2.3 → 1.2.5

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +7 -8
package/README.md CHANGED
@@ -89,6 +89,8 @@ BSD 3-Clause License
89
89
 
90
90
  ## Release history
91
91
 
92
+ * 1.2.5 *Updated dev deps.*
93
+ * 1.2.4 *Updated deps.*
92
94
  * 1.2.3 *Updated deps + more tests.*
93
95
  * 1.2.2 *Updated deps.*
94
96
  * 1.2.1 *Added support for `Bun.stringWidth()`.*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "console-toolkit",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "Toolkit to produce a fancy console output (boxes, tables, charts, colors).",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -20,11 +20,10 @@
20
20
  "scripts": {
21
21
  "test": "tape6 --flags FO",
22
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",
23
+ "test:deno": "tape6-deno --flags FO",
25
24
  "test:proc": "tape6-proc --flags FO",
26
25
  "test:proc:bun": "bun run `npx tape6-proc --self` --flags FO",
27
- "test:proc:deno": "deno run -A `npx tape6-proc --self` --flags FO --runFileArgs -A"
26
+ "test:proc:deno": "deno run -A `npx tape6-proc --self` --flags FO -r -A"
28
27
  },
29
28
  "github": "http://github.com/uhop/console-toolkit",
30
29
  "repository": {
@@ -64,9 +63,9 @@
64
63
  ]
65
64
  },
66
65
  "devDependencies": {
67
- "emoji-regex": "^10.4.0",
68
- "get-east-asian-width": "^1.2.0",
69
- "tape-six": "^1.0.2",
70
- "tape-six-proc": "^1.0.0"
66
+ "emoji-regex": "^10.6.0",
67
+ "get-east-asian-width": "^1.4.0",
68
+ "tape-six": "^1.4.3",
69
+ "tape-six-proc": "^1.1.4"
71
70
  }
72
71
  }