supertape 7.1.0 → 7.1.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.
Files changed (3) hide show
  1. package/ChangeLog +10 -0
  2. package/lib/cli.js +4 -4
  3. package/package.json +2 -2
package/ChangeLog CHANGED
@@ -1,3 +1,13 @@
1
+ 2022.02.28, v7.1.1
2
+
3
+ fix:
4
+ - (supertape) SUPERTAPE_CHECK_ASSERTIONS_COUNT (#2)
5
+
6
+
7
+ feature:
8
+ - (supertape) eslint-plugin-putout v14.0.0
9
+
10
+
1
11
  2022.02.18, v7.1.0
2
12
 
3
13
  feature:
package/lib/cli.js CHANGED
@@ -31,8 +31,8 @@ const filesCount = fullstore(0);
31
31
 
32
32
  const {
33
33
  SUPERTAPE_CHECK_DUPLICATES = '1',
34
- SUPERTAPE_CHECK_SCOPES = '0',
35
- SUPERTAPE_CHECK_ASSERTIONS_COUNT = '0',
34
+ SUPERTAPE_CHECK_SCOPES = '1',
35
+ SUPERTAPE_CHECK_ASSERTIONS_COUNT = '1',
36
36
  } = process.env;
37
37
 
38
38
  module.exports = async ({argv, cwd, stdout, stderr, exit}) => {
@@ -104,8 +104,8 @@ const yargsOptions = {
104
104
  format: 'progress-bar',
105
105
  require: [],
106
106
  checkDuplicates: SUPERTAPE_CHECK_DUPLICATES !== '0',
107
- checkScopes: SUPERTAPE_CHECK_SCOPES === '1',
108
- checkAssertionsCount: SUPERTAPE_CHECK_ASSERTIONS_COUNT === '1',
107
+ checkScopes: SUPERTAPE_CHECK_SCOPES !== '0',
108
+ checkAssertionsCount: SUPERTAPE_CHECK_ASSERTIONS_COUNT !== '0',
109
109
  },
110
110
  };
111
111
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supertape",
3
- "version": "7.1.0",
3
+ "version": "7.1.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",
@@ -79,7 +79,7 @@
79
79
  "check-dts": "^0.6.5",
80
80
  "eslint": "^8.0.0",
81
81
  "eslint-plugin-node": "^11.1.0",
82
- "eslint-plugin-putout": "^13.0.1",
82
+ "eslint-plugin-putout": "^14.0.0",
83
83
  "find-up": "^6.3.0",
84
84
  "madrun": "^9.0.0",
85
85
  "mock-require": "^3.0.2",