supertape 12.0.0 → 12.0.1
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 +10 -0
- package/lib/cli.js +1 -1
- package/lib/run-tests.js +1 -1
- package/package.json +3 -3
package/ChangeLog
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
2026.01.07, v12.0.1
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- fe9757a @putout/engine-loader: drop support of node < 22
|
|
5
|
+
|
|
6
|
+
feature:
|
|
7
|
+
- cc993cd supertape: @supertape/engine-loader v4.0.0
|
|
8
|
+
- c3bc060 supertape: redlint v5.0.2
|
|
9
|
+
- 3336186 supertape: madrun v12.1.0
|
|
10
|
+
|
|
1
11
|
2026.01.04, v12.0.0
|
|
2
12
|
|
|
3
13
|
feature:
|
package/lib/cli.js
CHANGED
|
@@ -7,7 +7,7 @@ const {pathToFileURL} = require('node:url');
|
|
|
7
7
|
|
|
8
8
|
const glob = require('glob');
|
|
9
9
|
const fullstore = require('fullstore');
|
|
10
|
-
const tryToCatch = require('try-to-catch');
|
|
10
|
+
const {tryToCatch} = require('try-to-catch');
|
|
11
11
|
const {keypress: _keypress} = require('@putout/cli-keypress');
|
|
12
12
|
|
|
13
13
|
const {parseArgs, yargsOptions} = require('./cli/parse-args');
|
package/lib/run-tests.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
const fullstore = require('fullstore');
|
|
4
4
|
const wraptile = require('wraptile');
|
|
5
|
-
const tryToCatch = require('try-to-catch');
|
|
5
|
+
const {tryToCatch} = require('try-to-catch');
|
|
6
6
|
const isDebug = require('./is-debug');
|
|
7
7
|
|
|
8
8
|
const {createValidator} = require('./validator');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supertape",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.1",
|
|
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",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@cloudcmd/stub": "^4.0.0",
|
|
43
43
|
"@putout/cli-keypress": "^3.0.0",
|
|
44
44
|
"@putout/cli-validate-args": "^2.0.0",
|
|
45
|
-
"@supertape/engine-loader": "^
|
|
45
|
+
"@supertape/engine-loader": "^4.0.0",
|
|
46
46
|
"@supertape/formatter-fail": "^4.0.0",
|
|
47
47
|
"@supertape/formatter-json-lines": "^2.0.0",
|
|
48
48
|
"@supertape/formatter-progress-bar": "^7.0.0",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"eslint": "^9.1.1",
|
|
83
83
|
"eslint-plugin-putout": "^29.0.2",
|
|
84
84
|
"find-up": "^8.0.0",
|
|
85
|
-
"madrun": "^
|
|
85
|
+
"madrun": "^12.1.0",
|
|
86
86
|
"mock-require": "^3.0.2",
|
|
87
87
|
"montag": "^1.0.0",
|
|
88
88
|
"nodemon": "^3.0.1",
|