Skip to content

Commit 2261bcd

Browse files
authored
Support for Node.js v14.15.4 LTS (#772)
* Support for Node.js v15.x - Support for Node.js v15.x * - update node-sass for latest versions of node * - rollback to stable react-dev-util (facebook/create-react-app#9804)
1 parent ed95fcd commit 2261bcd

File tree

3 files changed

+602
-318
lines changed

3 files changed

+602
-318
lines changed

config/yarn-workspaces.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const loadPackageJson = (packagePath) => {
3737
const getWorkspacesRootConfig = (dir) => {
3838
const packageJsonUp = findUp.sync('package.json', { cwd: dir });
3939

40-
if (packageJsonUp === null) {
40+
if (packageJsonUp === null || packageJsonUp === undefined) {
4141
return false;
4242
}
4343

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"less-loader": "^5.0.0",
6464
"less-vars-to-js": "^1.3.0",
6565
"mini-css-extract-plugin": "0.7.0",
66-
"node-sass": "^4.14.0",
66+
"node-sass": "^4.14.1",
6767
"optimize-css-assets-webpack-plugin": "5.0.1",
6868
"pnp-webpack-plugin": "1.5.0",
6969
"postcss-flexbugs-fixes": "4.1.0",
@@ -74,7 +74,7 @@
7474
"react": "^16.12.0",
7575
"react-app-polyfill": "^1.0.0",
7676
"react-axe": "3.3.0",
77-
"react-dev-utils": "^10.0.0",
77+
"react-dev-utils": "^9.1.0",
7878
"react-docgen-typescript-loader": "^3.6.0",
7979
"react-dom": "^16.12.0",
8080
"react-ga": "^2.5.3",
@@ -96,9 +96,9 @@
9696
"terser-webpack-plugin": "1.3.0",
9797
"url-loader": "2.0.0",
9898
"use-onclickoutside": "^0.3.1",
99-
"webpack": "^4.41.4",
100-
"webpack-cli": "^3.3.10",
101-
"webpack-dev-server": "3.7.1",
99+
"webpack": "^4.46.0",
100+
"webpack-cli": "^4.3.1",
101+
"webpack-dev-server": "3.11.2",
102102
"webpack-merge": "^4.2.2",
103103
"webpack-pwa-manifest": "^4.0.0",
104104
"workbox-webpack-plugin": "^5.1.3"

0 commit comments

Comments
 (0)