Skip to content

Commit

Permalink
[core] Misc dependency fixes (#19412)
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon authored Jan 26, 2020
1 parent 2209044 commit 742eb0c
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 7 deletions.
1 change: 1 addition & 0 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@
"react-draggable": "^4.0.3",
"react-final-form": "^6.3.0",
"react-frame-component": "^4.1.1",
"react-is": "^16.12.0",
"react-number-format": "^4.0.8",
"react-redux": "^7.1.1",
"react-router": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
"**/@babel/preset-react": "^7.7.4",
"**/@babel/runtime-corejs2": "^7.7.4",
"**/@babel/runtime": "^7.7.4",
"**/hoist-non-react-statics": "^3.2.1",
"**/hoist-non-react-statics": "^3.3.2",
"**/next/terser": "^4.1.2"
},
"nyc": {
Expand Down
3 changes: 1 addition & 2 deletions packages/material-ui-icons/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import Mustache from 'mustache';
import Queue from 'modules/waterfall/Queue';
import util from 'util';
import glob from 'glob';
import mkdirp from 'mkdirp';
import SVGO from 'svgo';

const globAsync = util.promisify(glob);
Expand Down Expand Up @@ -160,7 +159,7 @@ async function worker({ svgPath, options, renameFilter, template }) {

if (!exists2) {
console.log(`Making dir: ${outputFileDir}`);
mkdirp.sync(outputFileDir);
fse.mkdirpSync(outputFileDir);
}

const data = await fse.readFile(svgPath, { encoding: 'utf8' });
Expand Down
1 change: 0 additions & 1 deletion packages/material-ui-icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
},
"devDependencies": {
"fs-extra": "^8.1.0",
"mkdirp": "^0.5.0",
"mustache": "^4.0.0",
"svgo": "^1.3.0",
"temp": "^0.9.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui-styles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"@material-ui/utils": "^4.7.1",
"clsx": "^1.0.2",
"csstype": "^2.5.2",
"hoist-non-react-statics": "^3.2.1",
"hoist-non-react-statics": "^3.3.2",
"jss": "^10.0.3",
"jss-plugin-camel-case": "^10.0.3",
"jss-plugin-default-unit": "^10.0.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"@types/react-transition-group": "^4.2.0",
"clsx": "^1.0.2",
"convert-css-length": "^2.0.1",
"hoist-non-react-statics": "^3.2.1",
"hoist-non-react-statics": "^3.3.2",
"normalize-scroll-left": "^0.2.0",
"popper.js": "^1.14.1",
"prop-types": "^15.7.2",
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7785,7 +7785,7 @@ hogan.js@^3.0.2:
mkdirp "0.3.0"
nopt "1.0.10"

hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.2.0, hoist-non-react-statics@^3.2.1, hoist-non-react-statics@^3.3.0:
hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.2.0, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2:
version "3.3.2"
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
Expand Down

0 comments on commit 742eb0c

Please sign in to comment.