Skip to content

Commit

Permalink
fix: Update babel package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
brijeshb42 committed Sep 14, 2023
1 parent 3e66538 commit 28eb2ab
Show file tree
Hide file tree
Showing 7 changed files with 604 additions and 929 deletions.
10 changes: 5 additions & 5 deletions apps/zero-runtime-next-app/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "zero-runtime-next-app",
"name": "@app/zero-runtime-next-app",
"version": "0.1.0",
"private": true,
"scripts": {
Expand All @@ -9,9 +9,9 @@
"lint": "next lint"
},
"dependencies": {
"@mui/base": "^5.0.0-beta.14",
"@mui/material": "^5.14.8",
"@mui/utils": "^5.14.8",
"@mui/base": "file:../../packages/mui-base/build",
"@mui/material": "file:../../packages/mui-material/build",
"@mui/utils": "file:../../packages/mui-utils/build",
"@mui/zero-runtime": "file:../../packages/zero-runtime/build",
"next": "13.4.19",
"react": "18.2.0",
Expand All @@ -23,7 +23,7 @@
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"typescript": "5.2.2"
"typescript": "5.1.6"
},
"resolutions": {
"@mui/zero-tag-processor": "file:../../packages/zero-tag-processor/build"
Expand Down
384 changes: 153 additions & 231 deletions apps/zero-runtime-next-app/yarn.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions apps/zero-runtime-vite-app/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "zero-runtime-vite-app",
"name": "@app/zero-runtime-vite-app",
"version": "0.0.0",
"private": true,
"type": "module",
Expand All @@ -13,8 +13,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@mui/utils": "^5.14.9",
"@mui/material": "^5.14.9",
"@mui/utils": "file:../../packages/mui-utils/build",
"@mui/material": "file:../../packages/mui-material/build",
"@mui/zero-vite-plugin": "file:../../packages/zero-vite-plugin/build",
"@vitejs/plugin-react": "^4.0.4",
"vite": "4.4.9"
Expand Down
914 changes: 427 additions & 487 deletions apps/zero-runtime-vite-app/yarn.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/mui-material/src/Button/Button.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const buttonTest = () => (
Title
</Button>
<Button component="a">Simple Link</Button>
<Button component={(props) => <a {...props} />}>Complex Link</Button>
<Button component={(props: any) => <a {...props} />}>Complex Link</Button>
<Button component={ReactRouterLink} to="/open-collective">
Link
</Button>
Expand Down
9 changes: 4 additions & 5 deletions packages/zero-next-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"repository": {
"type": "git",
"url": "https://github.com/mui/material-ui.git",
"directory": "packages/zero-webpack-plugin"
"directory": "packages/zero-next-plugin"
},
"license": "MIT",
"bugs": {
Expand All @@ -39,18 +39,17 @@
"typescript:module-augmentation": "node scripts/testModuleAugmentation.js"
},
"dependencies": {
"@babel/core": "^7.22.10",
"@babel/core": "^7.22.17",
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/preset-typescript": "^7.22.10",
"@babel/preset-typescript": "^7.22.15",
"@linaria/babel-preset": "^4.5.4",
"@mui/zero-tag-processor": "0.0.1-alpha.3",
"file-system-cache": "2.0.2"
},
"devDependencies": {
"@types/babel__core": "^7.20.1",
"@types/loader-utils": "^2.0.3",
"next": "^13.4.19",
"webpack": "^5.88.2"
"next": "^13.4.19"
},
"peerDependencies": {
"next": ">=12.0.0 <14.0.0"
Expand Down
Loading

0 comments on commit 28eb2ab

Please sign in to comment.