supertape 12.0.8 → 12.0.10

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/ChangeLog CHANGED
@@ -1,3 +1,21 @@
1
+ 2026.01.11, v12.0.10
2
+
3
+ feature:
4
+ - 723aa92 supertape: @supertape/formatter-progress-bar v8.0.0
5
+ - 49f8413 @supertape/formatter-progress-bar: drop support of node < 22
6
+ - 01c88b0 supertape: @supertape/formatter-time v3.0.0
7
+ - f95aaf8 @supertape/formatter-time: drop support of node < 22
8
+ - 767f16e @supertape/formatter-json-lines: drop support of node < 22
9
+ - 68b4caa supertape: @supertape/formatter-fail v5.0.0
10
+ - 67fd8d2 @supertape/formatter-fail: drop support of node < 22
11
+ - da50b1f supertape: fullstore v4.0.0
12
+ - 5183eef supertape: @putout/cli-keypress v4.0.0
13
+
14
+ 2026.01.09, v12.0.9
15
+
16
+ fix:
17
+ - 07e4f3d supertape: readme: require -> import
18
+
1
19
  2026.01.09, v12.0.8
2
20
 
3
21
  feature:
package/README.md CHANGED
@@ -225,7 +225,8 @@ Generate a new test that will be skipped over.
225
225
  Extend base assertions with more:
226
226
 
227
227
  ```js
228
- const {extend} = require('supertape');
228
+ import {extend} from 'supertape';
229
+
229
230
  const test = extend({
230
231
  transform: (operator) => (a, b, message = 'should transform') => {
231
232
  const {is, output} = operator.equal(a + 1, b - 1);
@@ -246,7 +247,7 @@ test('assertion', (t) => {
246
247
  ## Example
247
248
 
248
249
  ```js
249
- const test = require('supertape');
250
+ import {test} from 'supertape';
250
251
 
251
252
  test('lib: arguments', async (t) => {
252
253
  throw Error('hello');
package/bin/is-stop.js CHANGED
@@ -1,4 +1,4 @@
1
- import fullstore from 'fullstore';
1
+ import {fullstore} from 'fullstore';
2
2
 
3
3
  const noop = () => {};
4
4
 
package/lib/cli.js CHANGED
@@ -3,7 +3,7 @@ import {resolve as resolvePath} from 'node:path';
3
3
  import {once} from 'node:events';
4
4
  import {env} from 'node:process';
5
5
  import {createRequire} from 'node:module';
6
- import fullstore from 'fullstore';
6
+ import {fullstore} from 'fullstore';
7
7
  import {tryToCatch} from 'try-to-catch';
8
8
  import {keypress as _keypress} from '@putout/cli-keypress';
9
9
  import {sync as _globSync} from 'glob';
package/lib/help.js CHANGED
@@ -12,4 +12,3 @@ export const help = () => {
12
12
 
13
13
  return result.join('\n') + '\n';
14
14
  };
15
-
package/lib/run-tests.js CHANGED
@@ -1,4 +1,4 @@
1
- import fullstore from 'fullstore';
1
+ import {fullstore} from 'fullstore';
2
2
  import wraptile from 'wraptile';
3
3
  import {tryToCatch} from 'try-to-catch';
4
4
  import _isDebug from './is-debug.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supertape",
3
- "version": "12.0.8",
3
+ "version": "12.0.10",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "📼 Supertape simplest high speed test runner with superpowers",
6
6
  "homepage": "http://github.com/coderaiser/supertape",
@@ -40,19 +40,19 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@cloudcmd/stub": "^4.0.0",
43
- "@putout/cli-keypress": "^3.0.0",
43
+ "@putout/cli-keypress": "^4.0.0",
44
44
  "@putout/cli-validate-args": "^2.0.0",
45
45
  "@supertape/engine-loader": "^4.0.0",
46
- "@supertape/formatter-fail": "^4.0.0",
46
+ "@supertape/formatter-fail": "^5.0.0",
47
47
  "@supertape/formatter-json-lines": "^2.0.0",
48
- "@supertape/formatter-progress-bar": "^7.0.0",
48
+ "@supertape/formatter-progress-bar": "^8.0.0",
49
49
  "@supertape/formatter-short": "^3.0.0",
50
50
  "@supertape/formatter-tap": "^4.0.0",
51
- "@supertape/formatter-time": "^2.0.0",
51
+ "@supertape/formatter-time": "^3.0.0",
52
52
  "@supertape/operator-stub": "^3.0.0",
53
53
  "cli-progress": "^3.8.2",
54
54
  "flatted": "^3.3.1",
55
- "fullstore": "^3.0.0",
55
+ "fullstore": "^4.0.0",
56
56
  "glob": "^11.0.1",
57
57
  "jest-diff": "^30.0.3",
58
58
  "json-with-bigint": "^3.4.4",