Skip to content

Commit

Permalink
[core] Patch correct dependencies
Browse files Browse the repository at this point in the history
Closes #20168
  • Loading branch information
oliviertassinari committed Mar 18, 2020
1 parent 276b8ff commit 10bc98f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/material-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@material-ui/core",
"version": "4.9.6",
"version": "4.9.7",
"private": false,
"author": "Material-UI Team",
"description": "React components that implement Google's Material Design.",
Expand Down Expand Up @@ -48,8 +48,8 @@
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"@material-ui/styles": "^4.9.0",
"@material-ui/system": "^4.9.3",
"@material-ui/styles": "^4.9.6",
"@material-ui/system": "^4.9.6",
"@material-ui/types": "^5.0.0",
"@material-ui/utils": "^4.9.6",
"@types/react-transition-group": "^4.2.0",
Expand Down

2 comments on commit 10bc98f

@BjoernRave
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this fixing this error:

 Attempted import error: 'createUnarySpacing' is not exported from '@material-ui/system'.
[1] TypeError: (0 , _system.createUnarySpacing) is not a function
[1]     at createSpacing (/Users/bjoern/projects/inventhora/frontend/node_modules/@material-ui/core/styles/createSpacing.js:23:50)
[1]     at createMuiTheme (/Users/bjoern/projects/inventhora/frontend/node_modules/@material-ui/core/styles/createMuiTheme.js:48:44)
[1]     at Object.<anonymous> (/Users/bjoern/projects/inventhora/frontend/node_modules/@material-ui/core/styles/defaultTheme.js:12:48)
[1]     at Module._compile (internal/modules/cjs/loader.js:955:30)
[1]     at Object.Module._extensions..js (internal/modules/cjs/loader.js:991:10)
[1]     at Module.load (internal/modules/cjs/loader.js:811:32)
[1]     at Function.Module._load (internal/modules/cjs/loader.js:723:14)
[1]     at Module.require (internal/modules/cjs/loader.js:848:19)
[1]     at require (internal/modules/cjs/helpers.js:74:18)
[1]     at Object.<anonymous> (/Users/bjoern/projects/inventhora/frontend/node_modules/@material-ui/core/styles/makeStyles.js:14:44)
[1]     at Module._compile (internal/modules/cjs/loader.js:955:30)
[1]     at Object.Module._extensions..js (internal/modules/cjs/loader.js:991:10)
[1]     at Module.load (internal/modules/cjs/loader.js:811:32)
[1]     at Function.Module._load (internal/modules/cjs/loader.js:723:14)
[1]     at Module.require (internal/modules/cjs/loader.js:848:19)
[1]     at require (internal/modules/cjs/helpers.js:74:18)

@oliviertassinari
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See #20168.

Please sign in to comment.