Skip to content

Commit

Permalink
Bump Public packages' dependencies (#1336)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michał Dudak <[email protected]>
  • Loading branch information
renovate[bot] and michaldudak authored Jan 22, 2025
1 parent dd10994 commit 960fb4c
Show file tree
Hide file tree
Showing 4 changed files with 199 additions and 204 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-plugin-material-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"devDependencies": {
"@types/eslint": "^8.56.12",
"@typescript-eslint/experimental-utils": "^5.62.0",
"@typescript-eslint/parser": "^8.19.0"
"@typescript-eslint/parser": "^8.21.0"
},
"license": "MIT"
}
18 changes: 9 additions & 9 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@
"@babel/runtime": "^7.26.0",
"@floating-ui/react": "^0.27.3",
"@floating-ui/utils": "^0.2.9",
"@react-aria/overlays": "^3.24.0",
"@react-aria/overlays": "^3.25.0",
"prop-types": "^15.8.1",
"use-sync-external-store": "^1.4.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@mui/internal-test-utils": "^1.0.24",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@arethetypeswrong/cli": "^0.17.3",
"@mui/internal-test-utils": "^1.0.26",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/chai": "^4.3.20",
"@types/chai-dom": "^1.11.3",
"@types/prop-types": "^15.7.14",
Expand All @@ -96,14 +96,14 @@
"@types/sinon": "^17.0.3",
"@types/use-sync-external-store": "^0.0.6",
"chai": "^4.5.0",
"fs-extra": "^11.2.0",
"fs-extra": "^11.3.0",
"lodash": "^4.17.21",
"publint": "^0.2.12",
"publint": "^0.3.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^6.28.1",
"react-router-dom": "^6.28.2",
"sinon": "^19.0.2",
"typescript": "^5.7.2"
"typescript": "^5.7.3"
},
"peerDependencies": {
"@types/react": "^17 || ^18 || ^19",
Expand Down
14 changes: 12 additions & 2 deletions packages/react/scripts/createPackageManifest.mts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,17 @@ type TransformedExports = Record<

export async function createPackageManifest() {
const packageData = await fse.readFile(path.resolve(PROJECT_ROOT, './package.json'), 'utf8');
const { imports, exports, scripts, devDependencies, workspaces, ...otherPackageData } =
JSON.parse(packageData);
const {
imports,
exports,
scripts,
devDependencies,
workspaces,
publishConfig,
...otherPackageData
} = JSON.parse(packageData);

delete publishConfig.directory;

const newPackageData = {
...otherPackageData,
Expand All @@ -32,6 +41,7 @@ export async function createPackageManifest() {
},
},
exports: retargetExports(exports),
publishConfig,
};

const targetPath = path.resolve(PROJECT_BUILD_DIR, './package.json');
Expand Down
Loading

0 comments on commit 960fb4c

Please sign in to comment.