From d826b95d94ce7092573067606c2106613b867382 Mon Sep 17 00:00:00 2001 From: Tarnyko Date: Mon, 27 May 2019 03:02:11 +0200 Subject: [PATCH] Fix NPM Stylus dependency (#96) 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",