Merge pull request #67 from Steveb-p/fix-trailing-commas

Fix trailing commas causing syntax error on NodeJS 6.x
This commit is contained in:
Alexander Zeitler 2019-05-01 01:19:20 +02:00 committed by GitHub
commit 4125516f2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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