From fd1d0817c4230732d9db12ac38817bfa671055b6 Mon Sep 17 00:00:00 2001 From: Manuel Bachmann Date: Thu, 23 May 2019 09:46:03 +0200 Subject: [PATCH] Fix NPM Stylus dependency NPM3 installs stylus 0.50.0, and then tries to install stylus-loader 3.0.1, but it actually requires stylus >= 0.52.4. Signed-off-by: Manuel Bachmann --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e87a482..23e7bdf 100644 --- a/package.json +++ b/package.json @@ -62,7 +62,7 @@ "socket.io": "^1.3.5", "socket.io-client": "^1.3.5", "style-loader": "^0.18.2", - "stylus": "^0.50.0", + "stylus": "^0.52.4", "stylus-loader": "^3.0.1", "twilio": "^2.9.1", "webpack": "^1.12.14",