From c446dfc70fa3aadea7dd95e2c3c643230702f9ab Mon Sep 17 00:00:00 2001 From: koolanky Date: Tue, 16 Aug 2016 16:46:08 +0530 Subject: [PATCH] Symbol ^ missing from gulp-server-livereload. causing failure in npm install Since the version number was not having ^ symbol npm install would eventually break while installing gulp dependencies. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1d846b3..9c81765 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "gulp-concat": "^2.5.2", "gulp-react": "^3.0.1", "gulp-sass": "^2.0.1", - "gulp-server-livereload": "1.3.0", + "gulp-server-livereload": "^1.3.0", "gulp-util": "^3.0.4", "gulp-watch": "^4.2.4", "node-notifier": "^4.2.1",