Skip to content

Commit 960fb4c

Browse files
Bump Public packages' dependencies (#1336)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michał Dudak <[email protected]>
1 parent dd10994 commit 960fb4c

File tree

4 files changed

+199
-204
lines changed

4 files changed

+199
-204
lines changed

packages/eslint-plugin-material-ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"devDependencies": {
88
"@types/eslint": "^8.56.12",
99
"@typescript-eslint/experimental-utils": "^5.62.0",
10-
"@typescript-eslint/parser": "^8.19.0"
10+
"@typescript-eslint/parser": "^8.21.0"
1111
},
1212
"license": "MIT"
1313
}

packages/react/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,15 @@
7979
"@babel/runtime": "^7.26.0",
8080
"@floating-ui/react": "^0.27.3",
8181
"@floating-ui/utils": "^0.2.9",
82-
"@react-aria/overlays": "^3.24.0",
82+
"@react-aria/overlays": "^3.25.0",
8383
"prop-types": "^15.8.1",
8484
"use-sync-external-store": "^1.4.0"
8585
},
8686
"devDependencies": {
87-
"@arethetypeswrong/cli": "^0.17.2",
88-
"@mui/internal-test-utils": "^1.0.24",
89-
"@testing-library/react": "^16.1.0",
90-
"@testing-library/user-event": "^14.5.2",
87+
"@arethetypeswrong/cli": "^0.17.3",
88+
"@mui/internal-test-utils": "^1.0.26",
89+
"@testing-library/react": "^16.2.0",
90+
"@testing-library/user-event": "^14.6.1",
9191
"@types/chai": "^4.3.20",
9292
"@types/chai-dom": "^1.11.3",
9393
"@types/prop-types": "^15.7.14",
@@ -96,14 +96,14 @@
9696
"@types/sinon": "^17.0.3",
9797
"@types/use-sync-external-store": "^0.0.6",
9898
"chai": "^4.5.0",
99-
"fs-extra": "^11.2.0",
99+
"fs-extra": "^11.3.0",
100100
"lodash": "^4.17.21",
101-
"publint": "^0.2.12",
101+
"publint": "^0.3.2",
102102
"react": "^19.0.0",
103103
"react-dom": "^19.0.0",
104-
"react-router-dom": "^6.28.1",
104+
"react-router-dom": "^6.28.2",
105105
"sinon": "^19.0.2",
106-
"typescript": "^5.7.2"
106+
"typescript": "^5.7.3"
107107
},
108108
"peerDependencies": {
109109
"@types/react": "^17 || ^18 || ^19",

packages/react/scripts/createPackageManifest.mts

+12-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,17 @@ type TransformedExports = Record<
1414

1515
export async function createPackageManifest() {
1616
const packageData = await fse.readFile(path.resolve(PROJECT_ROOT, './package.json'), 'utf8');
17-
const { imports, exports, scripts, devDependencies, workspaces, ...otherPackageData } =
18-
JSON.parse(packageData);
17+
const {
18+
imports,
19+
exports,
20+
scripts,
21+
devDependencies,
22+
workspaces,
23+
publishConfig,
24+
...otherPackageData
25+
} = JSON.parse(packageData);
26+
27+
delete publishConfig.directory;
1928

2029
const newPackageData = {
2130
...otherPackageData,
@@ -32,6 +41,7 @@ export async function createPackageManifest() {
3241
},
3342
},
3443
exports: retargetExports(exports),
44+
publishConfig,
3545
};
3646

3747
const targetPath = path.resolve(PROJECT_BUILD_DIR, './package.json');

0 commit comments

Comments
 (0)