@code-pushup/eslint-plugin 0.14.4 → 0.16.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/bin.js +3 -0
- package/index.js +4 -1
- package/package.json +1 -1
package/bin.js
CHANGED
|
@@ -641,6 +641,9 @@ function toUnixPath(path, options) {
|
|
|
641
641
|
return unixPath;
|
|
642
642
|
}
|
|
643
643
|
|
|
644
|
+
// packages/utils/src/lib/logging.ts
|
|
645
|
+
import chalk4 from "chalk";
|
|
646
|
+
|
|
644
647
|
// packages/plugin-eslint/src/lib/setup.ts
|
|
645
648
|
import { ESLint } from "eslint";
|
|
646
649
|
function setupESLint(eslintrc) {
|
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
|
+
var version = "0.16.0";
|
|
9
9
|
|
|
10
10
|
// packages/plugin-eslint/src/lib/config.ts
|
|
11
11
|
import { z } from "zod";
|
|
@@ -631,6 +631,9 @@ function distinct(array) {
|
|
|
631
631
|
return [...new Set(array)];
|
|
632
632
|
}
|
|
633
633
|
|
|
634
|
+
// packages/utils/src/lib/logging.ts
|
|
635
|
+
import chalk4 from "chalk";
|
|
636
|
+
|
|
634
637
|
// packages/plugin-eslint/src/lib/meta/hash.ts
|
|
635
638
|
import { createHash } from "node:crypto";
|
|
636
639
|
function ruleIdToSlug(ruleId, options) {
|