escover 6.0.0 → 6.0.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.
package/ChangeLog CHANGED
@@ -1,3 +1,10 @@
1
+ 2026.05.06, v6.0.1
2
+
3
+ feature:
4
+ - 25d81ee escover: supertape v13.1.1
5
+ - 1fbab60 escover: montag v2.0.1
6
+ - 2836798 escover: c8 v11.0.0
7
+
1
8
  2026.02.16, v6.0.0
2
9
 
3
10
  feature:
package/lib/cli/cli.js CHANGED
@@ -10,7 +10,7 @@ const noop = () => {};
10
10
 
11
11
  const {ESCOVER_FORMAT} = process.env;
12
12
 
13
- export const ESCOVER_NODE_OPTIONS = '--no-warnings --import escover/register --import mock-import/register';
13
+ export const ESCOVER_NODE_OPTIONS = '--no-warnings --import escover/register';
14
14
 
15
15
  export const cli = ({argv, exit, readCoverage}) => {
16
16
  const args = yargsParser(argv.slice(2), {
package/lib/escover.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import process from 'node:process';
2
- import montag from 'montag';
2
+ import {montag} from 'montag';
3
3
  import {instrument} from './instrument/index.js';
4
4
  import {createFileEntry} from './c4.js';
5
5
  import {readConfig, isExclude} from './config.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "escover",
3
- "version": "6.0.0",
3
+ "version": "6.0.1",
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",
@@ -46,7 +46,7 @@
46
46
  "find-cache-dir": "^5.0.0",
47
47
  "find-up": "^8.0.0",
48
48
  "mock-import": "^5.0.0",
49
- "montag": "^1.2.1",
49
+ "montag": "^2.0.1",
50
50
  "once": "^1.4.0",
51
51
  "picomatch": "^4.0.2",
52
52
  "putout": "^42.0.1",
@@ -62,11 +62,11 @@
62
62
  "devDependencies": {
63
63
  "@putout/eslint-flat": "^4.0.0",
64
64
  "@putout/test": "^15.1.1",
65
- "c8": "^10.1.2",
65
+ "c8": "^11.0.0",
66
66
  "escover": "file:.",
67
67
  "eslint": "^10.0.0",
68
68
  "eslint-plugin-putout": "^31.0.0",
69
69
  "madrun": "^13.0.0",
70
- "supertape": "^12.5.0"
70
+ "supertape": "^13.1.1"
71
71
  }
72
72
  }