@mui/internal-code-infra 0.0.3-canary.85 → 0.0.3-canary.87
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/build/stylelint/index.d.mts +1 -1
- package/package.json +11 -11
- package/src/stylelint/index.mjs +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/internal-code-infra",
|
|
3
|
-
"version": "0.0.3-canary.
|
|
3
|
+
"version": "0.0.3-canary.87",
|
|
4
4
|
"description": "Infra scripts and configs to be used across MUI repos.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@babel/preset-env": "^7.28.6",
|
|
59
59
|
"@babel/preset-react": "^7.28.5",
|
|
60
60
|
"@babel/preset-typescript": "^7.28.5",
|
|
61
|
-
"@eslint/compat": "^2.0.
|
|
61
|
+
"@eslint/compat": "^2.0.2",
|
|
62
62
|
"@eslint/js": "^9.39.2",
|
|
63
63
|
"@eslint/json": "^0.14.0",
|
|
64
64
|
"@inquirer/confirm": "^6.0.4",
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"@octokit/oauth-methods": "^6.0.2",
|
|
69
69
|
"@octokit/rest": "^22.0.1",
|
|
70
70
|
"@pnpm/find-workspace-dir": "^1000.1.3",
|
|
71
|
-
"@typescript-eslint/types": "^8.
|
|
72
|
-
"@typescript-eslint/utils": "^8.
|
|
71
|
+
"@typescript-eslint/types": "^8.54.0",
|
|
72
|
+
"@typescript-eslint/utils": "^8.54.0",
|
|
73
73
|
"@vitest/eslint-plugin": "^1.6.6",
|
|
74
74
|
"babel-plugin-optimize-clsx": "^2.6.2",
|
|
75
75
|
"babel-plugin-react-compiler": "^1.0.0",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"eslint-config-prettier": "^10.1.8",
|
|
85
85
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
86
86
|
"eslint-module-utils": "^2.12.1",
|
|
87
|
-
"eslint-plugin-compat": "^6.0
|
|
87
|
+
"eslint-plugin-compat": "^6.1.0",
|
|
88
88
|
"eslint-plugin-import": "^2.32.0",
|
|
89
89
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
90
90
|
"eslint-plugin-mocha": "^11.2.0",
|
|
@@ -109,8 +109,8 @@
|
|
|
109
109
|
"remark-rehype": "^11.1.2",
|
|
110
110
|
"resolve-pkg-maps": "^1.0.0",
|
|
111
111
|
"semver": "^7.7.3",
|
|
112
|
-
"stylelint-config-standard": "^
|
|
113
|
-
"typescript-eslint": "^8.
|
|
112
|
+
"stylelint-config-standard": "^40.0.0",
|
|
113
|
+
"typescript-eslint": "^8.54.0",
|
|
114
114
|
"unified": "^11.0.5",
|
|
115
115
|
"yargs": "^18.0.0",
|
|
116
116
|
"@mui/internal-babel-plugin-display-name": "1.0.4-canary.11",
|
|
@@ -134,13 +134,13 @@
|
|
|
134
134
|
"@types/estree-jsx": "1.0.5",
|
|
135
135
|
"@types/regexp.escape": "2.0.0",
|
|
136
136
|
"@types/yargs": "17.0.35",
|
|
137
|
-
"@typescript-eslint/parser": "8.
|
|
138
|
-
"@typescript-eslint/rule-tester": "8.
|
|
137
|
+
"@typescript-eslint/parser": "8.54.0",
|
|
138
|
+
"@typescript-eslint/rule-tester": "8.54.0",
|
|
139
139
|
"eslint": "9.39.2",
|
|
140
140
|
"get-port": "7.1.0",
|
|
141
141
|
"prettier": "3.7.4",
|
|
142
142
|
"serve": "14.2.5",
|
|
143
|
-
"typescript-eslint": "8.
|
|
143
|
+
"typescript-eslint": "8.54.0"
|
|
144
144
|
},
|
|
145
145
|
"files": [
|
|
146
146
|
"bin",
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
"publishConfig": {
|
|
153
153
|
"access": "public"
|
|
154
154
|
},
|
|
155
|
-
"gitSha": "
|
|
155
|
+
"gitSha": "4ade0c29b3effbc7af0278f249019ce294fed0d4",
|
|
156
156
|
"scripts": {
|
|
157
157
|
"build": "tsc -p tsconfig.build.json",
|
|
158
158
|
"typescript": "tsc -p tsconfig.json",
|
package/src/stylelint/index.mjs
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import postcssStylesSyntax from 'postcss-styled-syntax';
|
|
2
|
-
import standardConfig from 'stylelint-config-standard';
|
|
3
2
|
|
|
4
3
|
/** @type {import('stylelint').Config} */
|
|
5
4
|
export default {
|
|
6
|
-
extends:
|
|
5
|
+
extends: 'stylelint-config-standard',
|
|
7
6
|
rules: {
|
|
8
7
|
// Too opinionated?
|
|
9
8
|
'no-descending-specificity': null,
|