Comparing version 3.0.2 to 3.0.3
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="3.0.3"></a> | ||
## [3.0.3](https://github.com/moxystudio/node-promptly/compare/v3.0.2...v3.0.3) (2018-01-17) | ||
### Bug Fixes | ||
* add pify to package.json ([#20](https://github.com/moxystudio/node-promptly/issues/20)) ([b7a7c84](https://github.com/moxystudio/node-promptly/commit/b7a7c84)) | ||
<a name="3.0.2"></a> | ||
@@ -27,2 +37,3 @@ ## [3.0.2](https://github.com/moxystudio/node-promptly/compare/v3.0.1...v3.0.2) (2018-01-15) | ||
* remove support for old node versions (only latest lts or higher is supported) | ||
* callback support has been removed | ||
@@ -29,0 +40,0 @@ * ability to call error.retry has been removed |
{ | ||
"name": "promptly", | ||
"version": "3.0.2", | ||
"version": "3.0.3", | ||
"description": "Simple command line prompting utility", | ||
@@ -49,4 +49,4 @@ "keywords": [ | ||
"dependencies": { | ||
"read": "^1.0.4", | ||
"strip-ansi": "^4.0.0" | ||
"pify": "^3.0.0", | ||
"read": "^1.0.4" | ||
}, | ||
@@ -53,0 +53,0 @@ "devDependencies": { |
@@ -100,3 +100,3 @@ # promptly | ||
The validators have two purposes: to validate and to transform input. | ||
The validators have two purposes: to check and transform input. | ||
@@ -117,3 +117,3 @@ ```js | ||
Ask the user for confirmation, printing the `message` and waiting for the input. | ||
Ask the user for confirmation, printing the `message` and waiting for the input. | ||
Returns a promise that resolves with the answer. | ||
@@ -124,3 +124,3 @@ | ||
The same options from [prompt](#promptmessage-options) are available. | ||
The options are the same as [prompt](#promptmessage-options), except that `trim` defaults to `false`. | ||
@@ -142,3 +142,3 @@ #### Examples | ||
The same options from [prompt](#promptmessage-options) are available. | ||
The options are the same as [prompt](#promptmessage-options), except that `trim` defaults to `false`. | ||
@@ -160,3 +160,3 @@ #### Examples | ||
The same options from [prompt](#promptmessage-options) are available, except that `trim` and `silent` default to `false` and `default` is an empty string to allow empty passwords. | ||
The options are the same as [prompt](#promptmessage-options), except that `trim` and `silent` default to `false` and `default` is an empty string (to allow empty passwords). | ||
@@ -181,5 +181,10 @@ #### Examples | ||
## Tests | ||
`$ npm test` | ||
`$ npm test -- --watch` during development | ||
## License | ||
Released under the [MIT License](http://www.opensource.org/licenses/mit-license.php). |
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
13382
185
+ Addedpify@^3.0.0
+ Addedpify@3.0.0(transitive)
- Removedstrip-ansi@^4.0.0
- Removedansi-regex@3.0.1(transitive)
- Removedstrip-ansi@4.0.0(transitive)