escover 6.5.1 → 6.5.2

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,8 @@
1
+ 2026.05.19, v6.5.2
2
+
3
+ feature:
4
+ - 67c9634 escover: plugin-mark: simplify
5
+
1
6
  2026.05.19, v6.5.1
2
7
 
3
8
  fix:
@@ -122,8 +122,6 @@ export const fix = (path, {options}) => {
122
122
 
123
123
  return;
124
124
  }
125
-
126
- replaceWith(path, blockStatement([node]));
127
125
  };
128
126
 
129
127
  const EXCLUDE = [
@@ -210,12 +208,6 @@ export const traverse = ({push}) => ({
210
208
  push(expPath);
211
209
  }
212
210
  },
213
- UpdateExpression(path) {
214
- if (compare(path, `(${LINE}, __z)`))
215
- return;
216
-
217
- push(path);
218
- },
219
211
  'IfStatement|ConditionalExpression'(path) {
220
212
  const consequentPath = path.get('consequent');
221
213
  const alternatePath = path.get('alternate');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "escover",
3
- "version": "6.5.1",
3
+ "version": "6.5.2",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "Coverage for EcmaScript Modules",
6
6
  "main": "packages/escover/lib/escover.js",