@code-pushup/eslint-plugin 0.16.8 → 0.17.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.
Files changed (3) hide show
  1. package/bin.js +1 -1
  2. package/index.js +2 -2
  3. package/package.json +1 -1
package/bin.js CHANGED
@@ -550,7 +550,7 @@ var reportSchema = packageVersionSchema({
550
550
  // packages/utils/src/lib/file-system.ts
551
551
  import { bundleRequire } from "bundle-require";
552
552
  import chalk from "chalk";
553
- import { mkdir, readFile, readdir, stat } from "node:fs/promises";
553
+ import { mkdir, readFile, readdir, rm, stat } from "node:fs/promises";
554
554
  import { join } from "node:path";
555
555
 
556
556
  // packages/utils/src/lib/formatting.ts
package/index.js CHANGED
@@ -5,7 +5,7 @@ import { fileURLToPath } from "node:url";
5
5
 
6
6
  // packages/plugin-eslint/package.json
7
7
  var name = "@code-pushup/eslint-plugin";
8
- var version = "0.16.8";
8
+ var version = "0.17.0";
9
9
 
10
10
  // packages/plugin-eslint/src/lib/config.ts
11
11
  import { z } from "zod";
@@ -572,7 +572,7 @@ var reportSchema = packageVersionSchema({
572
572
  // packages/utils/src/lib/file-system.ts
573
573
  import { bundleRequire } from "bundle-require";
574
574
  import chalk from "chalk";
575
- import { mkdir, readFile, readdir, stat } from "node:fs/promises";
575
+ import { mkdir, readFile, readdir, rm, stat } from "node:fs/promises";
576
576
  import { join } from "node:path";
577
577
 
578
578
  // packages/utils/src/lib/formatting.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-pushup/eslint-plugin",
3
- "version": "0.16.8",
3
+ "version": "0.17.0",
4
4
  "license": "MIT",
5
5
  "dependencies": {
6
6
  "@code-pushup/utils": "*",