make options.log param optional (default = false)

This commit is contained in:
Alexander Zeitler 2017-08-24 17:48:12 +02:00
parent 48cf0b4cb8
commit 83a25085a7
2 changed files with 6 additions and 6 deletions

View file

@ -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) {

View file

@ -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",