-
Notifications
You must be signed in to change notification settings - Fork 825
chore: Fix various peer dependency warnings #2054
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,6 +17,8 @@ | |
| "node": ">=8.0.0" | ||
| }, | ||
| "dependencies": { | ||
| "@babel/core": "^7.9.6", | ||
| "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Was previously declared in the root but only used in the docs workspace. |
||
| "@babel/plugin-proposal-optional-chaining": "^7.9.0", | ||
| "@date-io/hijri": "^2.6.0", | ||
| "@date-io/jalaali": "^2.6.0", | ||
|
|
@@ -25,6 +27,7 @@ | |
| "@material-ui/icons": "^4.9.1", | ||
| "@material-ui/lab": "^4.0.0-alpha.54", | ||
| "@material-ui/pickers": "^4.0.0-alpha.1", | ||
| "@mdx-js/mdx": "^0.15.7", | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixes "missing peer"-warning |
||
| "@now/node": "^1.7.3", | ||
| "@types/fuzzy-search": "^2.1.0", | ||
| "@types/isomorphic-fetch": "^0.0.35", | ||
|
|
@@ -73,6 +76,7 @@ | |
| "sinon": "^9.0.2", | ||
| "styled-jsx": "^3.3.0", | ||
| "typescript": "^3.9.6", | ||
| "webpack": "^4.43.0", | ||
| "yup": "^0.29.1" | ||
| }, | ||
| "devDependencies": { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -99,18 +99,15 @@ | |
| "@types/react": "^16.9.35", | ||
| "@types/react-dom": "^16.9.8", | ||
| "@types/react-transition-group": "^4.2.4", | ||
| "@typescript-eslint/eslint-plugin": "^1.6.0", | ||
| "@typescript-eslint/parser": "^1.6.0", | ||
|
Comment on lines
-102
to
-103
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are used in the |
||
| "babel-loader": "^8.1.0", | ||
| "babel-plugin-optimize-clsx": "^2.6.1", | ||
| "babel-plugin-react-remove-properties": "^0.3.0", | ||
| "codecov": "^3.7.1", | ||
| "cross-env": "^7.0.2", | ||
| "date-fns": "^2.12.0", | ||
| "dayjs": "^1.8.27", | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixes "missing peer"-warning. Worked incidentally since it was hoisted from the docs workspace. |
||
| "enzyme": "^3.11.0", | ||
| "enzyme-adapter-react-16": "^1.15.2", | ||
| "eslint-plugin-react": "^7.19.0", | ||
| "eslint-plugin-react-hooks": "^4.0.5", | ||
|
Comment on lines
-112
to
-113
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are used in the |
||
| "fs-extra": "^9.0.0", | ||
| "full-icu": "^1.3.1", | ||
| "jest": "^26.1.0", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,9 +33,10 @@ | |
| "url": "git+https://github.com/mui-org/material-ui-pickers.git" | ||
| }, | ||
| "devDependencies": { | ||
| "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", | ||
| "@babel/preset-env": "^7.9.6", | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixes "missing peer"-warning. |
||
| "@babel/runtime": "^7.8.4", | ||
| "@cypress/webpack-preprocessor": "^4.1.0", | ||
| "@material-ui/core": "^4.11.0", | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixes "missing peer"-warning. |
||
| "@percy/cypress": "^2.3.1", | ||
| "@testing-library/cypress": "^6.0.0", | ||
| "@testing-library/dom": "^7.21.5", | ||
|
|
@@ -58,6 +59,9 @@ | |
| "husky": "^4.2.5", | ||
| "lint-staged": "^10.2.11", | ||
| "prettier": "^2.0.5", | ||
| "react": "^16.13.1", | ||
| "react-dom": "^16.13.1", | ||
| "typescript": "^3.9.6", | ||
|
Comment on lines
+62
to
+64
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixes "missing peer"-warning. |
||
| "wait-on": "^5.1.0", | ||
| "yarn-deduplicate": "^2.1.1" | ||
| }, | ||
|
|
@@ -70,5 +74,9 @@ | |
| "/docs/_shared", | ||
| "/e2e/", | ||
| "**/build" | ||
| ] | ||
| ], | ||
| "resolutions": { | ||
| "**/@babel/core": "^7.9.6", | ||
| "**/webpack": "^4.43.0" | ||
|
Comment on lines
+79
to
+80
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Technically |
||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixes "missing peer"-warning.