supertape 8.5.0 → 8.6.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,9 @@
1
+ 2023.09.18, v8.6.0
2
+
3
+ feature:
4
+ - a449f09 package: eslint-plugin-putout v20.0.0
5
+ - 5c43495 package: putout v32.0.6
6
+
1
7
  2023.08.28, v8.5.0
2
8
 
3
9
  feature:
package/bin/supertape.mjs CHANGED
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
+ import process from 'node:process';
3
4
  import cli from '../lib/cli.js';
4
5
 
5
6
  const {
package/lib/cli.js CHANGED
@@ -1,5 +1,6 @@
1
1
  'use strict';
2
2
 
3
+ const process = require('process');
3
4
  const {resolve: resolvePath} = require('path');
4
5
  const {once} = require('events');
5
6
  const {pathToFileURL} = require('url');
package/lib/is-debug.js CHANGED
@@ -1,5 +1,6 @@
1
1
  'use strict';
2
2
 
3
+ const process = require('process');
3
4
  const argv = process.execArgv.join();
4
5
 
5
6
  module.exports = argv.includes('inspect') || argv.includes('debug');
package/lib/run-tests.js CHANGED
@@ -1,5 +1,6 @@
1
1
  'use strict';
2
2
 
3
+ const process = require('process');
3
4
  const fullstore = require('fullstore');
4
5
  const wraptile = require('wraptile');
5
6
  const tryToCatch = require('try-to-catch');
package/lib/supertape.js CHANGED
@@ -1,5 +1,6 @@
1
1
  'use strict';
2
2
 
3
+ const process = require('process');
3
4
  const {EventEmitter} = require('events');
4
5
  const {PassThrough} = require('stream');
5
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supertape",
3
- "version": "8.5.0",
3
+ "version": "8.6.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",
@@ -79,14 +79,14 @@
79
79
  "check-dts": "^0.7.0",
80
80
  "eslint": "^8.0.0",
81
81
  "eslint-plugin-n": "^16.0.1",
82
- "eslint-plugin-putout": "^19.0.3",
82
+ "eslint-plugin-putout": "^20.0.0",
83
83
  "find-up": "^6.3.0",
84
84
  "madrun": "^9.0.0",
85
85
  "mock-require": "^3.0.2",
86
86
  "montag": "^1.0.0",
87
87
  "nodemon": "^3.0.1",
88
88
  "pullout": "^4.0.0",
89
- "putout": "^31.0.3",
89
+ "putout": "^32.0.6",
90
90
  "runsome": "^1.0.0",
91
91
  "try-catch": "^3.0.0",
92
92
  "typescript": "^5.1.6"