From 991c7017ad0e5fd47e5ce4fda61cd490ce07e682 Mon Sep 17 00:00:00 2001 From: Xan Bertison Date: Tue, 1 Oct 2019 11:34:42 -0400 Subject: [PATCH] Update node-sass dependency to be compatible with Node versions > v10 The guides for running the documentation locally to make contributions didn't work if you were on a newer version of node. Node v11 and v12 both threw an error about node-sass. Node-sass version now set to one that works with newer and older node versions. --- guides/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/package.json b/guides/package.json index 6e1f970330b..274d231fa86 100644 --- a/guides/package.json +++ b/guides/package.json @@ -21,7 +21,7 @@ "css-loader": "^0.28.9", "extract-text-webpack-plugin": "^3.0.2", "lodash": "^4.17.13", - "node-sass": "sass/node-sass#v5", + "node-sass": "^4.12.0", "postcss-loader": "~2.1.1", "randomatic": ">=3.0.0", "run-sequence": "^2.2.0",