supertape 11.3.0 → 11.4.0
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 +13 -0
- package/lib/diff.mjs +2 -2
- package/package.json +4 -5
package/ChangeLog
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
2025.12.10, v11.4.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- ddf8b4c supertape: eslint-plugin-putout v29.0.2
|
|
5
|
+
- 6b28156 supertape: strip-ansi -> stripVTControlCharacters
|
|
6
|
+
- 45968d5 supertape: putout v41.0.2
|
|
7
|
+
|
|
8
|
+
2025.09.18, v11.3.1
|
|
9
|
+
|
|
10
|
+
feature:
|
|
11
|
+
- da39e33 supertape: find-up v8.0.0
|
|
12
|
+
- 5d90bd8 supertape: eslint-plugin-putout v28.0.0
|
|
13
|
+
|
|
1
14
|
2025.07.01, v11.3.0
|
|
2
15
|
|
|
3
16
|
feature:
|
package/lib/diff.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import {stripVTControlCharacters} from 'node:util';
|
|
1
2
|
import {diff} from 'jest-diff';
|
|
2
|
-
import strip from 'strip-ansi';
|
|
3
3
|
import {formatOutput, addSpaces} from './format.js';
|
|
4
4
|
|
|
5
5
|
export default (a, b) => {
|
|
@@ -15,7 +15,7 @@ export default (a, b) => {
|
|
|
15
15
|
.slice(3)
|
|
16
16
|
.join('\n');
|
|
17
17
|
|
|
18
|
-
if (
|
|
18
|
+
if (stripVTControlCharacters(diffed) === 'Compared values have no visual difference.')
|
|
19
19
|
return '';
|
|
20
20
|
|
|
21
21
|
const output = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supertape",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.4.0",
|
|
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",
|
|
@@ -59,7 +59,6 @@
|
|
|
59
59
|
"once": "^1.4.0",
|
|
60
60
|
"resolve": "^1.17.0",
|
|
61
61
|
"stacktracey": "^2.1.7",
|
|
62
|
-
"strip-ansi": "^7.0.0",
|
|
63
62
|
"try-to-catch": "^3.0.0",
|
|
64
63
|
"wraptile": "^3.0.0",
|
|
65
64
|
"yargs-parser": "^22.0.0"
|
|
@@ -81,14 +80,14 @@
|
|
|
81
80
|
"check-dts": "^0.9.0",
|
|
82
81
|
"currify": "^4.0.0",
|
|
83
82
|
"eslint": "^9.1.1",
|
|
84
|
-
"eslint-plugin-putout": "^
|
|
85
|
-
"find-up": "^
|
|
83
|
+
"eslint-plugin-putout": "^29.0.2",
|
|
84
|
+
"find-up": "^8.0.0",
|
|
86
85
|
"madrun": "^11.0.0",
|
|
87
86
|
"mock-require": "^3.0.2",
|
|
88
87
|
"montag": "^1.0.0",
|
|
89
88
|
"nodemon": "^3.0.1",
|
|
90
89
|
"pullout": "^5.0.1",
|
|
91
|
-
"putout": "^
|
|
90
|
+
"putout": "^41.0.2",
|
|
92
91
|
"runsome": "^1.0.0",
|
|
93
92
|
"try-catch": "^3.0.1",
|
|
94
93
|
"typescript": "^5.1.6"
|