@antora/playbook-builder
Advanced tools
Comparing version 3.0.0-beta.3 to 3.0.0-beta.4
@@ -14,3 +14,3 @@ 'use strict' | ||
format: String, | ||
default: '@antora/site-generator-default', | ||
default: '@antora/site-generator', | ||
arg: 'generator', | ||
@@ -263,3 +263,3 @@ }, | ||
{ | ||
doc: 'Set the format of log messages. Defaults to json if CI=true, pretty otherwise.', | ||
doc: 'Set the format of log messages. Defaults to pretty if CI=true or stdout is a TTY, json otherwise.', | ||
format: ['json', 'pretty'], | ||
@@ -273,3 +273,3 @@ default: undefined, | ||
if (property !== 'default') return target[property] | ||
return process.env.CI === 'true' || process.env.NODE_ENV === 'test' ? 'json' : 'pretty' | ||
return process.env.CI === 'true' || process.stdout.isTTY ? 'pretty' : 'json' | ||
}, | ||
@@ -276,0 +276,0 @@ } |
{ | ||
"name": "@antora/playbook-builder", | ||
"version": "3.0.0-beta.3", | ||
"version": "3.0.0-beta.4", | ||
"description": "Builds a playbook object from user input for configuring successive documentation components in an Antora pipeline.", | ||
@@ -39,3 +39,4 @@ "license": "MPL-2.0", | ||
], | ||
"gitHead": "45da95a2e2dea538379d2d9f42013d2208fb86c3" | ||
"gitHead": "8a142499e9f1a9e0631777796e06dd6c010d3a90", | ||
"readmeFilename": "README.md" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39849