From 17c5f6d3904231751c79bea48e5a006d3dfcc8c2 Mon Sep 17 00:00:00 2001 From: Alexander Zeitler Date: Thu, 24 Aug 2017 17:51:47 +0200 Subject: [PATCH] resolve call must not depend on logging --- index.js | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index e94cbf3..14fd6e7 100644 --- a/index.js +++ b/index.js @@ -135,9 +135,9 @@ const rm = function (options) { standards => { if (options.log) { logStandards(standards); - - return resolve(); } + + return resolve(); }, err => { logger.error(err.message); diff --git a/package.json b/package.json index 230ff63..61ebfd1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "docker-compose", - "version": "0.4.0", + "version": "0.4.1", "main": "index.js", "scripts": { "test": "./node_modules/tape/bin/tape test",