yargs-interactive
Advanced tools
Comparing version 3.0.0 to 3.0.1
{ | ||
"name": "yargs-interactive", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Build interactive command line tools without worring to parse the arguments (or ask them).", | ||
@@ -12,3 +12,3 @@ "main": "src/index.js", | ||
"test": "jest --collectCoverage", | ||
"coveralls": "jest --collectCoverage && cat ./coverage/lcov.info | coveralls", | ||
"publish-coverage": "cat ./coverage/lcov.info | coveralls", | ||
"semantic-release": "semantic-release" | ||
@@ -15,0 +15,0 @@ }, |
@@ -16,3 +16,4 @@ const yargs = require('yargs'); | ||
interactive: { | ||
default: !!(options.interactive && options.interactive.default), | ||
type: 'confirm', | ||
default: !!(options.interactive && options.interactive.default) || !!yargs.argv.interactive, | ||
prompt: 'never' | ||
@@ -19,0 +20,0 @@ } |
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
15500
104