From 44e8197496c437adaa0fcf5576b1ad2f82076c3a Mon Sep 17 00:00:00 2001 From: Danilo Resende Date: Tue, 20 Nov 2018 14:52:17 -0200 Subject: [PATCH] Lock "debug" dependency to work on Node v4 Koa adds dependency to `"debug": "*"` which fetch a version non compatible with Node v4. Locking it on our package.json fix this issue. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 5bd36c9..cb34b6c 100644 --- a/package.json +++ b/package.json @@ -47,6 +47,7 @@ "koa": "^1.2.1", "koa-route": "^2.4.2", "koa-views": "^4.1.0", + "debug": "^2.6.1", "mocha": "^2.5.3", "pug": "^2.0.0-beta2", "redis": "^2.6.1",