supertape 8.1.0 → 8.2.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 CHANGED
@@ -1,3 +1,10 @@
1
+ 2022.11.14, v8.2.0
2
+
3
+ feature:
4
+ - supertape: types: improve support of skip, only in WebStorm
5
+ - (package) putout v28.0.0
6
+ - (package) lerna v6.0.1
7
+
1
8
  2022.09.15, v8.1.0
2
9
 
3
10
  feature:
@@ -39,9 +39,14 @@ type TestOptions = {
39
39
  };
40
40
 
41
41
  declare function test(message: string, fn: (t: Test) => void, options?: TestOptions): void;
42
+ declare const skip: typeof test;
43
+ declare const only: typeof test;
44
+
42
45
  declare namespace test {
43
- export var only: typeof test;
44
- export var skip: typeof test;
46
+ export {
47
+ only,
48
+ skip,
49
+ };
45
50
  }
46
51
 
47
52
  export default test;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supertape",
3
- "version": "8.1.0",
3
+ "version": "8.2.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",
@@ -87,7 +87,7 @@
87
87
  "montag": "^1.0.0",
88
88
  "nodemon": "^2.0.2",
89
89
  "pullout": "^4.0.0",
90
- "putout": "^27.2.0",
90
+ "putout": "^28.0.0",
91
91
  "runsome": "^1.0.0",
92
92
  "try-catch": "^3.0.0",
93
93
  "typescript": "^4.4.4"