@code-pushup/eslint-plugin 0.8.24 → 0.8.25
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/bin.js +2 -2
- package/index.js +3 -3
- package/package.json +1 -1
package/bin.js
CHANGED
|
@@ -601,7 +601,7 @@ function compareIssueSeverity(severity1, severity2) {
|
|
|
601
601
|
}
|
|
602
602
|
|
|
603
603
|
// packages/utils/src/lib/git.ts
|
|
604
|
-
import simpleGit from "simple-git";
|
|
604
|
+
import { simpleGit } from "simple-git";
|
|
605
605
|
var git = simpleGit();
|
|
606
606
|
|
|
607
607
|
// packages/utils/src/lib/progress.ts
|
|
@@ -611,7 +611,7 @@ import { MultiProgressBars } from "multi-progress-bars";
|
|
|
611
611
|
// packages/utils/src/lib/reports/generate-stdout-summary.ts
|
|
612
612
|
import cliui from "@isaacs/cliui";
|
|
613
613
|
import chalk3 from "chalk";
|
|
614
|
-
import
|
|
614
|
+
import CliTable3 from "cli-table3";
|
|
615
615
|
|
|
616
616
|
// packages/utils/src/lib/transform.ts
|
|
617
617
|
function toArray(val) {
|
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.8.
|
|
8
|
+
var version = "0.8.25";
|
|
9
9
|
|
|
10
10
|
// packages/plugin-eslint/src/lib/config.ts
|
|
11
11
|
import { z } from "zod";
|
|
@@ -604,7 +604,7 @@ function pluginWorkDir(slug) {
|
|
|
604
604
|
}
|
|
605
605
|
|
|
606
606
|
// packages/utils/src/lib/git.ts
|
|
607
|
-
import simpleGit from "simple-git";
|
|
607
|
+
import { simpleGit } from "simple-git";
|
|
608
608
|
var git = simpleGit();
|
|
609
609
|
|
|
610
610
|
// packages/utils/src/lib/progress.ts
|
|
@@ -614,7 +614,7 @@ import { MultiProgressBars } from "multi-progress-bars";
|
|
|
614
614
|
// packages/utils/src/lib/reports/generate-stdout-summary.ts
|
|
615
615
|
import cliui from "@isaacs/cliui";
|
|
616
616
|
import chalk3 from "chalk";
|
|
617
|
-
import
|
|
617
|
+
import CliTable3 from "cli-table3";
|
|
618
618
|
|
|
619
619
|
// packages/utils/src/lib/transform.ts
|
|
620
620
|
function toArray(val) {
|