From 8057041bc7415419fb8faf4375b4e920ae874bb5 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Fri, 21 Apr 2017 12:03:39 -0400 Subject: [PATCH] chore: lock optional dependencies versions (#1337) Optional dependencies (and their dependencies) are not tracked by the shrinkwrap file. In order to prevent incompatibilities, we lock the versions of all optional dependencies. See: https://github.com/resin-io/etcher/pull/1304 Signed-off-by: Juan Cruz Viotti --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f38f7784..19d06e88 100644 --- a/package.json +++ b/package.json @@ -58,8 +58,8 @@ } }, "optionalDependencies": { - "electron-installer-debian": "^0.5.1", - "elevator": "^2.2.3" + "electron-installer-debian": "0.5.1", + "elevator": "2.2.3" }, "dependencies": { "angular": "1.6.3",