escover 4.2.0 → 4.3.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,12 @@
1
+ 2024.10.27, v4.3.0
2
+
3
+ feature:
4
+ - 5371048 escover: @putout/plugin-convert-optional-to-logical v4.0.0
5
+ - c8f1128 escover: @putout/test v11.0.0
6
+ - 35ac493 escover: putout v36.11.0
7
+ - 0e4c521 escover: eslint-plugin-putout v23.2.0
8
+ - ffbaffa escover: c8 v10.1.2
9
+
1
10
  2024.06.07, v4.2.0
2
11
 
3
12
  feature:
package/bin/escover.js CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
 
3
+ import process from 'node:process';
3
4
  import {cli} from '../lib/cli/cli.js';
4
5
  import {readCoverage} from '../lib/coverage-file/coverage-file.js';
5
- import process from 'node:process';
6
6
  import {readConfig} from '../lib/config.js';
7
7
 
8
8
  cli({
package/lib/cli/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {execSync} from 'node:child_process';
2
+ import process from 'node:process';
2
3
  import tryCatch from 'try-catch';
3
4
  import yargsParser from 'yargs-parser';
4
- import process from 'node:process';
5
5
  import {version} from './version.js';
6
6
  import reportLines from '../formatters/lines.js';
7
7
  import reportFiles from '../formatters/files.js';
@@ -1,9 +1,9 @@
1
+ import process from 'node:process';
1
2
  import {
2
3
  table,
3
4
  getBorderCharacters,
4
5
  } from 'table';
5
6
  import chalk from 'chalk';
6
- import process from 'node:process';
7
7
 
8
8
  const CWD = process.cwd();
9
9
 
@@ -1,6 +1,6 @@
1
1
  import putout from 'putout';
2
- import * as mark from './plugin-mark/index.js';
3
2
  import * as convertOptionalToLogical from '@putout/plugin-convert-optional-to-logical';
3
+ import * as mark from './plugin-mark/index.js';
4
4
 
5
5
  const cut = (a) => a.replace('#!/usr/bin/env node', '');
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "escover",
3
- "version": "4.2.0",
3
+ "version": "4.3.0",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "Coverage for EcmaScript Modules",
6
6
  "main": "lib/escover.js",
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "repository": {
12
12
  "type": "git",
13
- "url": "git://github.com/coderaiser/escover.git"
13
+ "url": "git+https://github.com/coderaiser/escover.git"
14
14
  },
15
15
  "exports": {
16
16
  ".": {
@@ -41,7 +41,7 @@
41
41
  "prewisdom": "madrun prewisdom"
42
42
  },
43
43
  "dependencies": {
44
- "@putout/plugin-convert-optional-to-logical": "^3.1.0",
44
+ "@putout/plugin-convert-optional-to-logical": "^4.0.0",
45
45
  "chalk": "^5.0.0",
46
46
  "find-cache-dir": "^5.0.0",
47
47
  "find-up": "^7.0.0",
@@ -49,7 +49,7 @@
49
49
  "montag": "^1.2.1",
50
50
  "once": "^1.4.0",
51
51
  "picomatch": "^4.0.2",
52
- "putout": "^35.0.1",
52
+ "putout": "^36.11.0",
53
53
  "strip-ansi": "^7.0.1",
54
54
  "table": "^6.8.0",
55
55
  "try-catch": "^3.0.0",
@@ -61,11 +61,11 @@
61
61
  "license": "MIT",
62
62
  "devDependencies": {
63
63
  "@putout/eslint-flat": "^2.0.0",
64
- "@putout/test": "^10.0.0",
65
- "c8": "^9.1.0",
64
+ "@putout/test": "^11.0.0",
65
+ "c8": "^10.1.2",
66
66
  "escover": "file:.",
67
67
  "eslint": "^9.4.0",
68
- "eslint-plugin-putout": "^22.3.1",
68
+ "eslint-plugin-putout": "^23.2.0",
69
69
  "madrun": "^10.0.0",
70
70
  "supertape": "^10.0.0"
71
71
  }