eslint-plugin-react-debug 1.26.3-next.18 → 1.26.3-next.19

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/dist/index.js CHANGED
@@ -30,7 +30,7 @@ var settings = {
30
30
 
31
31
  // package.json
32
32
  var name2 = "eslint-plugin-react-debug";
33
- var version = "1.26.3-next.18";
33
+ var version = "1.26.3-next.19";
34
34
  var createRule = shared.createRuleForPlugin("debug");
35
35
 
36
36
  // src/rules/class-component.ts
@@ -241,10 +241,10 @@ function makeConfig(config) {
241
241
  }
242
242
  };
243
243
  }
244
- function makeLegacyConfig(config) {
244
+ function makeLegacyConfig({ rules: rules2 }) {
245
245
  return {
246
246
  plugins: ["react-debug"],
247
- rules: config.rules
247
+ rules: rules2
248
248
  };
249
249
  }
250
250
  var index_default = {
package/dist/index.mjs CHANGED
@@ -28,7 +28,7 @@ var settings = {
28
28
 
29
29
  // package.json
30
30
  var name2 = "eslint-plugin-react-debug";
31
- var version = "1.26.3-next.18";
31
+ var version = "1.26.3-next.19";
32
32
  var createRule = createRuleForPlugin("debug");
33
33
 
34
34
  // src/rules/class-component.ts
@@ -239,10 +239,10 @@ function makeConfig(config) {
239
239
  }
240
240
  };
241
241
  }
242
- function makeLegacyConfig(config) {
242
+ function makeLegacyConfig({ rules: rules2 }) {
243
243
  return {
244
244
  plugins: ["react-debug"],
245
- rules: config.rules
245
+ rules: rules2
246
246
  };
247
247
  }
248
248
  var index_default = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-react-debug",
3
- "version": "1.26.3-next.18",
3
+ "version": "1.26.3-next.19",
4
4
  "description": "ESLint React's ESLint plugin for debugging related rules.",
5
5
  "keywords": [
6
6
  "react",
@@ -49,12 +49,12 @@
49
49
  "@typescript-eslint/utils": "^8.24.1",
50
50
  "string-ts": "^2.2.1",
51
51
  "ts-pattern": "^5.6.2",
52
- "@eslint-react/ast": "1.26.3-next.18",
53
- "@eslint-react/core": "1.26.3-next.18",
54
- "@eslint-react/eff": "1.26.3-next.18",
55
- "@eslint-react/jsx": "1.26.3-next.18",
56
- "@eslint-react/shared": "1.26.3-next.18",
57
- "@eslint-react/var": "1.26.3-next.18"
52
+ "@eslint-react/ast": "1.26.3-next.19",
53
+ "@eslint-react/eff": "1.26.3-next.19",
54
+ "@eslint-react/jsx": "1.26.3-next.19",
55
+ "@eslint-react/core": "1.26.3-next.19",
56
+ "@eslint-react/shared": "1.26.3-next.19",
57
+ "@eslint-react/var": "1.26.3-next.19"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@types/react": "^19.0.10",
@@ -84,6 +84,6 @@
84
84
  "scripts": {
85
85
  "build": "tsup --dts-resolve",
86
86
  "lint:publish": "publint",
87
- "lint:type": "tsc --noEmit"
87
+ "lint:ts": "tsc --noEmit"
88
88
  }
89
89
  }