@mui/internal-code-infra 0.0.4-canary.30 → 0.0.4-canary.31

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.30",
3
+ "version": "0.0.4-canary.31",
4
4
  "author": "MUI Team",
5
5
  "description": "Infra scripts and configs to be used across MUI repos.",
6
6
  "license": "MIT",
@@ -119,9 +119,9 @@
119
119
  "typescript-eslint": "^8.57.1",
120
120
  "unified": "^11.0.5",
121
121
  "yargs": "^18.0.0",
122
- "@mui/internal-babel-plugin-resolve-imports": "2.0.7-canary.35",
123
122
  "@mui/internal-babel-plugin-display-name": "1.0.4-canary.18",
124
- "@mui/internal-babel-plugin-minify-errors": "2.0.8-canary.26"
123
+ "@mui/internal-babel-plugin-minify-errors": "2.0.8-canary.27",
124
+ "@mui/internal-babel-plugin-resolve-imports": "2.0.7-canary.36"
125
125
  },
126
126
  "peerDependencies": {
127
127
  "@next/eslint-plugin-next": "*",
@@ -168,7 +168,7 @@
168
168
  "publishConfig": {
169
169
  "access": "public"
170
170
  },
171
- "gitSha": "39b3392a159d6721878db7c4cfa5b505d2adb05d",
171
+ "gitSha": "b5ecb08ed447855ed858e123d924a08949b6ad6d",
172
172
  "scripts": {
173
173
  "build": "tsgo -p tsconfig.build.json",
174
174
  "typescript": "tsgo -noEmit",
@@ -2,8 +2,14 @@ import path from 'node:path';
2
2
  import getPort from 'get-port';
3
3
  import { describe, expect, it } from 'vitest';
4
4
 
5
- // eslint-disable-next-line import/extensions
6
- import { crawl, BrokenLinkIssue, HtmlValidateIssue, Issue, Link } from './index.mjs';
5
+ import {
6
+ crawl,
7
+ type BrokenLinkIssue,
8
+ type HtmlValidateIssue,
9
+ type Issue,
10
+ type Link,
11
+ // eslint-disable-next-line import/extensions
12
+ } from './index.mjs';
7
13
 
8
14
  type ExpectedBrokenLinkIssue = Omit<Partial<BrokenLinkIssue>, 'link'> & { link?: Partial<Link> };
9
15
 
@@ -1,4 +1,4 @@
1
- import { BaseExpression, Expression } from 'estree';
1
+ import { type BaseExpression, type Expression } from 'estree';
2
2
 
3
3
  export * from 'estree';
4
4
 
@@ -13,77 +13,77 @@ declare module 'eslint-config-airbnb' {
13
13
  }
14
14
 
15
15
  declare module 'eslint-config-airbnb-base/rules/best-practices' {
16
- import { Linter } from 'eslint';
16
+ import { type Linter } from 'eslint';
17
17
 
18
18
  declare const config: Omit<Linter.LegacyConfig, 'extends' | 'plugins'>;
19
19
  export default config;
20
20
  }
21
21
 
22
22
  declare module 'eslint-config-airbnb-base/rules/errors' {
23
- import { Linter } from 'eslint';
23
+ import { type Linter } from 'eslint';
24
24
 
25
25
  declare const config: Omit<Linter.LegacyConfig, 'extends' | 'plugins'>;
26
26
  export default config;
27
27
  }
28
28
 
29
29
  declare module 'eslint-config-airbnb-base/rules/es6' {
30
- import { Linter } from 'eslint';
30
+ import { type Linter } from 'eslint';
31
31
 
32
32
  declare const config: Omit<Linter.LegacyConfig, 'extends' | 'plugins'>;
33
33
  export default config;
34
34
  }
35
35
 
36
36
  declare module 'eslint-config-airbnb-base/rules/imports' {
37
- import { Linter } from 'eslint';
37
+ import { type Linter } from 'eslint';
38
38
 
39
39
  declare const config: Omit<Linter.LegacyConfig, 'extends' | 'plugins'>;
40
40
  export default config;
41
41
  }
42
42
 
43
43
  declare module 'eslint-config-airbnb-base/rules/node' {
44
- import { Linter } from 'eslint';
44
+ import { type Linter } from 'eslint';
45
45
 
46
46
  declare const config: Omit<Linter.LegacyConfig, 'extends' | 'plugins'>;
47
47
  export default config;
48
48
  }
49
49
 
50
50
  declare module 'eslint-config-airbnb-base/rules/strict' {
51
- import { Linter } from 'eslint';
51
+ import { type Linter } from 'eslint';
52
52
 
53
53
  declare const config: Omit<Linter.LegacyConfig, 'extends' | 'plugins'>;
54
54
  export default config;
55
55
  }
56
56
 
57
57
  declare module 'eslint-config-airbnb-base/rules/style' {
58
- import { Linter } from 'eslint';
58
+ import { type Linter } from 'eslint';
59
59
 
60
60
  declare const config: Omit<Linter.LegacyConfig, 'extends' | 'plugins'>;
61
61
  export default config;
62
62
  }
63
63
 
64
64
  declare module 'eslint-config-airbnb-base/rules/variables' {
65
- import { Linter } from 'eslint';
65
+ import { type Linter } from 'eslint';
66
66
 
67
67
  declare const config: Omit<Linter.LegacyConfig, 'extends' | 'plugins'>;
68
68
  export default config;
69
69
  }
70
70
 
71
71
  declare module 'eslint-config-airbnb/rules/react' {
72
- import { Linter } from 'eslint';
72
+ import { type Linter } from 'eslint';
73
73
 
74
74
  declare const config: Omit<Linter.LegacyConfig, 'extends' | 'plugins'>;
75
75
  export default config;
76
76
  }
77
77
 
78
78
  declare module 'eslint-config-airbnb/rules/react-a11y' {
79
- import { Linter } from 'eslint';
79
+ import { type Linter } from 'eslint';
80
80
 
81
81
  declare const config: Omit<Linter.LegacyConfig, 'extends' | 'plugins'>;
82
82
  export default config;
83
83
  }
84
84
 
85
85
  declare module '@next/eslint-plugin-next' {
86
- import { Linter } from 'eslint';
86
+ import { type Linter } from 'eslint';
87
87
 
88
88
  interface NextEslintPluginConfig extends Linter.LegacyConfig {
89
89
  flatConfig: {