@mui/internal-code-infra 0.0.4-canary.66 → 0.0.4-canary.67

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/internal-code-infra",
3
- "version": "0.0.4-canary.66",
3
+ "version": "0.0.4-canary.67",
4
4
  "author": "MUI Team",
5
5
  "description": "Infra scripts and configs to be used across MUI repos.",
6
6
  "license": "MIT",
@@ -63,7 +63,6 @@
63
63
  "@babel/preset-react": "^7.28.5",
64
64
  "@babel/preset-typescript": "^7.28.5",
65
65
  "@eslint/compat": "^2.1.0",
66
- "@eslint/config-helpers": "^0.6.0",
67
66
  "@eslint/js": "^10.0.1",
68
67
  "@eslint/json": "^1.2.0",
69
68
  "@inquirer/confirm": "^6.0.13",
@@ -136,9 +135,9 @@
136
135
  "unist-util-visit": "^5.1.0",
137
136
  "yaml": "^2.9.0",
138
137
  "yargs": "^18.0.0",
138
+ "@mui/internal-babel-plugin-resolve-imports": "2.0.7-canary.36",
139
139
  "@mui/internal-babel-plugin-display-name": "1.0.4-canary.20",
140
- "@mui/internal-babel-plugin-minify-errors": "2.0.8-canary.27",
141
- "@mui/internal-babel-plugin-resolve-imports": "2.0.7-canary.36"
140
+ "@mui/internal-babel-plugin-minify-errors": "2.0.8-canary.27"
142
141
  },
143
142
  "peerDependencies": {
144
143
  "@next/eslint-plugin-next": "*",
@@ -188,7 +187,7 @@
188
187
  "publishConfig": {
189
188
  "access": "public"
190
189
  },
191
- "gitSha": "db0c201b6c697cff1aab50b9b33270720c93f424",
190
+ "gitSha": "b0b08ac265cb2f9411c8cc32b09a8d0bd5093fac",
192
191
  "scripts": {
193
192
  "build": "tsgo -p tsconfig.build.json",
194
193
  "typescript": "tsgo -noEmit",
@@ -1,7 +1,6 @@
1
1
  import { includeIgnoreFile, fixupConfigRules } from '@eslint/compat';
2
2
  import eslintJs from '@eslint/js';
3
- // TODO: change back to 'eslint/config' once https://github.com/eslint/rewrite/issues/425 is fixed
4
- import { defineConfig } from '@eslint/config-helpers';
3
+ import { defineConfig } from 'eslint/config';
5
4
  import prettier from 'eslint-config-prettier/flat';
6
5
  import compatPlugin from 'eslint-plugin-compat';
7
6
  import importPlugin from 'eslint-plugin-import';
@@ -1,6 +1,5 @@
1
1
  import nextjs from '@next/eslint-plugin-next';
2
- // TODO: change back to 'eslint/config' once https://github.com/eslint/rewrite/issues/425 is fixed
3
- import { defineConfig } from '@eslint/config-helpers';
2
+ import { defineConfig } from 'eslint/config';
4
3
  import { EXTENSION_TS } from './extensions.mjs';
5
4
 
6
5
  /**
@@ -1,5 +1,4 @@
1
- // TODO: change back to 'eslint/config' once https://github.com/eslint/rewrite/issues/425 is fixed
2
- import { defineConfig } from '@eslint/config-helpers';
1
+ import { defineConfig } from 'eslint/config';
3
2
  import json from '@eslint/json';
4
3
 
5
4
  /**
@@ -1,5 +1,4 @@
1
- // TODO: change back to 'eslint/config' once https://github.com/eslint/rewrite/issues/425 is fixed
2
- import { defineConfig } from '@eslint/config-helpers';
1
+ import { defineConfig } from 'eslint/config';
3
2
  import { EXTENSION_DTS } from '../extensions.mjs';
4
3
 
5
4
  const restrictedMethods = ['setTimeout', 'setInterval', 'clearTimeout', 'clearInterval'];
@@ -1,8 +1,7 @@
1
1
  import mochaPlugin from 'eslint-plugin-mocha';
2
2
  import vitestPlugin from '@vitest/eslint-plugin';
3
3
  import testingLibrary from 'eslint-plugin-testing-library';
4
- // TODO: change back to 'eslint/config' once https://github.com/eslint/rewrite/issues/425 is fixed
5
- import { defineConfig } from '@eslint/config-helpers';
4
+ import { defineConfig } from 'eslint/config';
6
5
  import globals from 'globals';
7
6
  import * as tseslint from 'typescript-eslint';
8
7
  import { EXTENSION_TS } from './extensions.mjs';