console-toolkit 1.2.12 → 1.2.13

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 CHANGED
@@ -132,6 +132,7 @@ BSD 3-Clause License
132
132
 
133
133
  ## Release history
134
134
 
135
+ - 1.2.13 _Fixed spinner .d.ts export, added TS type tests, stricter type checking, updated dev deps._
135
136
  - 1.2.12 _Minor bug fixes, improved test coverage, documentation corrections._
136
137
  - 1.2.11 _Improved docs for brevity and clarity, added script descriptions, added AI workflows._
137
138
  - 1.2.10 _Added TypeScript typings, JSDoc, minor bug fixes, updated dev deps._
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "console-toolkit",
3
- "version": "1.2.12",
3
+ "version": "1.2.13",
4
4
  "description": "Toolkit to produce a fancy console output (boxes, tables, charts, colors).",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -29,6 +29,9 @@
29
29
  "test:seq:bun": "bun run `tape6-seq --self` --flags FO",
30
30
  "test:seq:deno": "deno run -A `tape6-seq --self` --flags FO",
31
31
  "ts-check": "tsc --noEmit",
32
+ "ts-test": "tape6 --flags FO 'tests/test-*.ts'",
33
+ "ts-test:bun": "tape6-bun --flags FO 'tests/test-*.ts'",
34
+ "ts-test:deno": "tape6-deno --flags FO 'tests/test-*.ts'",
32
35
  "lint": "prettier --check .",
33
36
  "lint:fix": "prettier --write ."
34
37
  },
@@ -82,12 +85,12 @@
82
85
  ]
83
86
  },
84
87
  "devDependencies": {
85
- "@types/node": "^25.3.3",
88
+ "@types/node": "^25.3.5",
86
89
  "emoji-regex": "^10.6.0",
87
90
  "get-east-asian-width": "^1.5.0",
88
91
  "prettier": "^3.8.1",
89
- "tape-six": "^1.7.8",
90
- "tape-six-proc": "^1.2.5",
92
+ "tape-six": "^1.7.11",
93
+ "tape-six-proc": "^1.2.6",
91
94
  "typescript": "^5.9.3"
92
95
  }
93
96
  }
@@ -1,4 +1,5 @@
1
1
  export {Spinner} from './spinner.js';
2
- export {default as spin} from './spin.js';
2
+ import spin from './spin.js';
3
3
 
4
+ export {spin};
4
5
  export default spin;