Fix trailing commas causing syntax error on NodeJS 6.x

Resolves #66
This commit is contained in:
Paweł Niedzielski 2019-05-01 01:09:16 +02:00
parent 65250af42a
commit 0b73648d00

View file

@ -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
);
};