Skip to content

Commit 5d2ba07

Browse files
Bump code-infra:devDependencies (major) (#46886)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Brijesh Bittu <717550+brijeshb42@users.noreply.github.com>
1 parent ea95d06 commit 5d2ba07

File tree

32 files changed

+129
-153
lines changed

32 files changed

+129
-153
lines changed

docs/data/material/integrations/interoperability/StyledComponentsDeep.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Box from '@mui/material/Box';
66
const CustomizedSlider = styled(Slider)`
77
color: #20b2aa;
88
9-
:hover {
9+
&:hover {
1010
color: #2e8b57;
1111
}
1212

docs/data/material/integrations/interoperability/StyledComponentsDeep.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Box from '@mui/material/Box';
66
const CustomizedSlider = styled(Slider)`
77
color: #20b2aa;
88
9-
:hover {
9+
&:hover {
1010
color: #2e8b57;
1111
}
1212

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,12 @@
128128
"@types/react-transition-group": "^4.4.12",
129129
"@types/react-window": "^1.8.8",
130130
"@types/stylis": "^4.2.7",
131-
"chai": "^4.5.0",
131+
"chai": "^6.0.1",
132132
"cross-fetch": "^4.1.0",
133133
"gm": "^1.25.1",
134134
"marked": "^16.2.0",
135135
"prettier": "^3.6.2",
136136
"tailwindcss": "^4.1.12",
137-
"yargs": "^17.7.2"
137+
"yargs": "^18.0.0"
138138
}
139139
}

docs/scripts/formattedTSDemos.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ const {
2222
const {
2323
createTypeScriptProjectBuilder,
2424
} = require('@mui-internal/api-docs-builder/utils/createTypeScriptProject');
25-
const yargs = require('yargs');
25+
const { default: yargs } = require('yargs');
26+
const { hideBin } = require('yargs/helpers');
2627
const { fixBabelGeneratorIssues, fixLineEndings } = require('@mui/internal-docs-utils');
2728
const { default: CORE_TYPESCRIPT_PROJECTS } = require('../../scripts/coreTypeScriptProjects');
2829

@@ -213,7 +214,7 @@ async function main(argv) {
213214
console.log('\nWatching for file changes...');
214215
}
215216

216-
yargs
217+
yargs()
217218
.command({
218219
command: '$0',
219220
description: 'transpile TypeScript demos',
@@ -240,4 +241,4 @@ yargs
240241
.help()
241242
.strict(true)
242243
.version(false)
243-
.parse();
244+
.parse(hideBin(process.argv));

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
"rimraf": "^6.0.1",
175175
"serve": "^14.2.4",
176176
"stylelint": "^16.23.1",
177-
"stylelint-config-standard": "^38.0.0",
177+
"stylelint-config-standard": "^39.0.0",
178178
"terser-webpack-plugin": "^5.3.14",
179179
"tsconfig-paths-webpack-plugin": "^4.2.0",
180180
"tsx": "^4.20.4",
@@ -185,7 +185,7 @@
185185
"webpack": "^5.101.3",
186186
"webpack-bundle-analyzer": "^4.10.2",
187187
"webpack-cli": "^6.0.1",
188-
"yargs": "^17.7.2"
188+
"yargs": "^18.0.0"
189189
},
190190
"packageManager": "pnpm@10.15.0",
191191
"engines": {

packages-internal/scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"@types/node": "^20.19.11",
4949
"@types/react": "^19.1.11",
5050
"@types/uuid": "^10.0.0",
51-
"chai": "^4.5.0",
51+
"chai": "^6.0.1",
5252
"fast-glob": "^3.3.3",
5353
"prettier": "^3.6.2",
5454
"rimraf": "^6.0.1"

packages-internal/test-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
},
6666
"peerDependencies": {
6767
"@playwright/test": "^1.53.1",
68-
"chai": "^4.5.0 || ^5.0.0",
68+
"chai": "^4.5.0 || ^5.0.0 || ^6.0.0",
6969
"react": "^18.0.0 || ^19.0.0",
7070
"react-dom": "^18.0.0 || ^19.0.0"
7171
},

packages-internal/test-utils/src/initMatchers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chai from 'chai';
1+
import * as chai from 'chai';
22
import chaiDom from 'chai-dom';
33
import './chai.types';
44
import chaiPlugin from './chaiPlugin';

packages/api-docs-builder-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@types/mocha": "^10.0.10",
2020
"@types/node": "^20.19.11",
2121
"@types/sinon": "^17.0.4",
22-
"chai": "^4.5.0",
22+
"chai": "^6.0.1",
2323
"sinon": "^21.0.0",
2424
"typescript": "^5.9.2"
2525
}

packages/api-docs-builder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"@types/node": "^20.19.11",
3535
"@types/react-docgen": "workspace:*",
3636
"@types/sinon": "^17.0.4",
37-
"chai": "^4.5.0",
37+
"chai": "^6.0.1",
3838
"sinon": "^21.0.0"
3939
}
4040
}

0 commit comments

Comments
 (0)