From 52e5db44bff272249c140906f3490857a2490977 Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Wed, 25 Mar 2020 10:34:54 +0000 Subject: [PATCH] Added missing lodash dependency - this is required by the errors module - it still works because it's in other packages, but should be declared --- ghost/errors/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghost/errors/package.json b/ghost/errors/package.json index 3d900ff9e3..a62dff8b03 100644 --- a/ghost/errors/package.json +++ b/ghost/errors/package.json @@ -24,6 +24,7 @@ "sinon": "9.0.1" }, "dependencies": { - "ghost-ignition": "^4.1.0" + "ghost-ignition": "^4.1.0", + "lodash": "^4.17.15" } }