supertape 7.1.1 → 7.2.2
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 +18 -0
- package/lib/validator.js +1 -1
- package/package.json +2 -3
package/ChangeLog
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
2022.04.06, v7.2.2
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- (package) @cloudcmd/stub v4.0.0
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
2022.03.29, v7.2.1
|
|
8
|
+
|
|
9
|
+
fix:
|
|
10
|
+
- (package) rm useless chalk
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
2022.03.01, v7.2.0
|
|
14
|
+
|
|
15
|
+
feature:
|
|
16
|
+
- (supertape) validator: check scopes: example -> received
|
|
17
|
+
|
|
18
|
+
|
|
1
19
|
2022.02.28, v7.1.1
|
|
2
20
|
|
|
3
21
|
fix:
|
package/lib/validator.js
CHANGED
|
@@ -104,7 +104,7 @@ function checkScopes(msg, filtered) {
|
|
|
104
104
|
const [message, at] = filtered[0];
|
|
105
105
|
|
|
106
106
|
if (!SCOPE_DEFINED.test(message))
|
|
107
|
-
return [`Scope should be defined before first colon: 'scope: subject',
|
|
107
|
+
return [`Scope should be defined before first colon: 'scope: subject', received: '${message}'`, at];
|
|
108
108
|
|
|
109
109
|
return [];
|
|
110
110
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supertape",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.2.2",
|
|
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",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"wisdom": "madrun wisdom"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@cloudcmd/stub": "^
|
|
41
|
+
"@cloudcmd/stub": "^4.0.0",
|
|
42
42
|
"@putout/cli-keypress": "^1.0.0",
|
|
43
43
|
"@putout/cli-validate-args": "^1.0.1",
|
|
44
44
|
"@supertape/engine-loader": "^1.0.0",
|
|
@@ -48,7 +48,6 @@
|
|
|
48
48
|
"@supertape/formatter-short": "^1.0.0",
|
|
49
49
|
"@supertape/formatter-tap": "^2.0.0",
|
|
50
50
|
"@supertape/operator-stub": "^1.0.0",
|
|
51
|
-
"chalk": "^4.1.0",
|
|
52
51
|
"cli-progress": "^3.8.2",
|
|
53
52
|
"deep-equal": "^2.0.3",
|
|
54
53
|
"fullstore": "^3.0.0",
|