diff --git a/index.js b/index.js index ccf8a49..e94cbf3 100644 --- a/index.js +++ b/index.js @@ -20,7 +20,7 @@ const logStandards = function (standards) { /** * @param {object} options - * @param {boolean} options.log + * @param {boolean} [options.log] * @param {string} options.cwd */ const up = function (options) { @@ -46,7 +46,7 @@ const up = function (options) { /** * @param {object} options - * @param {boolean} options.log + * @param {boolean} [options.log] * @param {string} options.cwd */ const down = function (options) { @@ -72,7 +72,7 @@ const down = function (options) { /** * @param {object} options - * @param {boolean} options.log + * @param {boolean} [options.log] * @param {cwd} options.cwd */ const stop = function (options) { @@ -98,7 +98,7 @@ const stop = function (options) { /** * @param {object} options - * @param {boolean} options.log + * @param {boolean} [options.log] * @param {string} options.cwd */ const kill = function (options) { @@ -124,7 +124,7 @@ const kill = function (options) { /** * @param {object} options - * @param {boolean} options.log + * @param {boolean} [options.log] * @param {string} options.cwd */ const rm = function (options) { diff --git a/package.json b/package.json index 93dbe7e..230ff63 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "docker-compose", - "version": "0.3.3", + "version": "0.4.0", "main": "index.js", "scripts": { "test": "./node_modules/tape/bin/tape test",