yargs 15.3.0-beta.1 → 15.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/README.md +3 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [15.3.0](https://www.github.com/yargs/yargs/compare/v15.2.0...v15.3.0) (2020-03-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **yargs-parser:** introduce single-digit boolean aliases ([#1576](https://www.github.com/yargs/yargs/issues/1576)) ([3af7f04](https://www.github.com/yargs/yargs/commit/3af7f04cdbfcbd4b3f432aca5144d43f21958c39))
|
|
11
|
+
* add usage for single-digit boolean aliases ([#1580](https://www.github.com/yargs/yargs/issues/1580)) ([6014e39](https://www.github.com/yargs/yargs/commit/6014e39bca3a1e8445aa0fb2a435f6181e344c45))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* address ambiguity between nargs of 1 and requiresArg ([#1572](https://www.github.com/yargs/yargs/issues/1572)) ([a5edc32](https://www.github.com/yargs/yargs/commit/a5edc328ecb3f90d1ba09cfe70a0040f68adf50a))
|
|
17
|
+
|
|
5
18
|
## [15.2.0](https://www.github.com/yargs/yargs/compare/v15.1.0...v15.2.0) (2020-03-01)
|
|
6
19
|
|
|
7
20
|
|
package/README.md
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
[![Build Status][travis-image]][travis-url]
|
|
12
12
|
[![NPM version][npm-image]][npm-url]
|
|
13
13
|
[![js-standard-style][standard-image]][standard-url]
|
|
14
|
+
[![Coverage][coverage-image]][coverage-url]
|
|
14
15
|
[![Conventional Commits][conventional-commits-image]][conventional-commits-url]
|
|
15
16
|
[![Slack][slack-image]][slack-url]
|
|
16
17
|
|
|
@@ -135,3 +136,5 @@ Having problems? want to contribute? join our [community slack](http://devtoolsc
|
|
|
135
136
|
[slack-image]: http://devtoolscommunity.herokuapp.com/badge.svg
|
|
136
137
|
[slack-url]: http://devtoolscommunity.herokuapp.com
|
|
137
138
|
[type-definitions]: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs
|
|
139
|
+
[coverage-image]: https://img.shields.io/badge/dynamic/json?color=brightgreen&label=coverage&query=branches&suffix=%25&url=https%3A%2F%2Fraw.githubusercontent.com%2Fyargs%2Fyargs%2Fmaster%2F.nycrc&cacheSeconds=3600
|
|
140
|
+
[coverage-url]: https://github.com/yargs/yargs/blob/master/.nycrc
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yargs",
|
|
3
|
-
"version": "15.3.0
|
|
3
|
+
"version": "15.3.0",
|
|
4
4
|
"description": "yargs the modern, pirate-themed, successor to optimist.",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"contributors": [
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"scripts": {
|
|
49
49
|
"fix": "standard --fix",
|
|
50
50
|
"posttest": "standard",
|
|
51
|
-
"test": "c8
|
|
52
|
-
"coverage": "c8 report --check-coverage
|
|
51
|
+
"test": "c8 mocha --require ./test/before.js --timeout=12000 --check-leaks",
|
|
52
|
+
"coverage": "c8 report --check-coverage"
|
|
53
53
|
},
|
|
54
54
|
"repository": {
|
|
55
55
|
"type": "git",
|