diff --git a/dist/index.js b/dist/index.js index f5968fe..d27a985 100644 --- a/dist/index.js +++ b/dist/index.js @@ -10481,7 +10481,7 @@ var version = function (options) { }); }; exports.version = version; -var stats = function (service) { +var stats = function (service, options) { return __awaiter(this, void 0, void 0, function () { var args, result, output, error_8; return __generator(this, function (_a) { @@ -10491,7 +10491,7 @@ var stats = function (service) { _a.label = 1; case 1: _a.trys.push([1, 3, , 4]); - return [4 /*yield*/, (0, exports.execCompose)('stats', args) + return [4 /*yield*/, (0, exports.execCompose)('stats', args, options) // Remove first and last quote from output, as well as newline. ]; case 2: diff --git a/dist/post.js b/dist/post.js index 56918a6..dcce138 100644 --- a/dist/post.js +++ b/dist/post.js @@ -3772,7 +3772,7 @@ var version = function (options) { }); }; exports.version = version; -var stats = function (service) { +var stats = function (service, options) { return __awaiter(this, void 0, void 0, function () { var args, result, output, error_8; return __generator(this, function (_a) { @@ -3782,7 +3782,7 @@ var stats = function (service) { _a.label = 1; case 1: _a.trys.push([1, 3, , 4]); - return [4 /*yield*/, (0, exports.execCompose)('stats', args) + return [4 /*yield*/, (0, exports.execCompose)('stats', args, options) // Remove first and last quote from output, as well as newline. ]; case 2: diff --git a/package-lock.json b/package-lock.json index d884a6f..fac2d87 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3404,9 +3404,10 @@ } }, "node_modules/docker-compose": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/docker-compose/-/docker-compose-1.1.0.tgz", - "integrity": "sha512-VrkQJNafPQ5d6bGULW0P6KqcxSkv3ZU5Wn2wQA19oB71o7+55vQ9ogFe2MMeNbK+jc9rrKVy280DnHO5JLMWOQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/docker-compose/-/docker-compose-1.1.1.tgz", + "integrity": "sha512-UkIUz0LtzuO17Ijm6SXMGtfZMs7IvbNwvuJBiBuN93PIhr/n9/sbJMqpvYFaCBGfwu1ZM4PPPDgQzeeke4lEoA==", + "license": "MIT", "dependencies": { "yaml": "^2.2.2" },