From 0b73648d0016dff7e538305ab56670be47ca88cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Niedzielski?= Date: Wed, 1 May 2019 01:09:16 +0200 Subject: [PATCH] Fix trailing commas causing syntax error on NodeJS 6.x Resolves #66 --- index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index 11a29c2..da9cf17 100644 --- a/index.js +++ b/index.js @@ -231,7 +231,7 @@ const buildAll = function (options) { return execCompose( 'build', options.parallel ? [ '--parallel' ] : [], - options, + options ); }; @@ -251,7 +251,7 @@ const buildMany = function (services, options) { return execCompose( 'build', options.parallel ? [ '--parallel' ].concat(services) : services, - options, + options ); }; @@ -343,7 +343,7 @@ const push = function (options) { return execCompose( 'push', options.ignorePushFailures ? [ '--ignore-push-failures' ] : [], - options, + options ); };