cli-argument-parser
Advanced tools
Comparing version 0.2.6 to 0.2.7
{ | ||
"name": "cli-argument-parser", | ||
"version": "0.2.6", | ||
"version": "0.2.7", | ||
"description": "A package containing relevant CLI actions", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -28,7 +28,7 @@ # Command-line Argument Parser · [![GitHub license](https://img.shields.io/badge/license-BSD%203%20Clause-blue.svg)](https://github.com/danitseitlin/cli-argument-parser/blob/master/LICENSE) [![npm version](http://img.shields.io/npm/v/cli-argument-parser.svg?style=flat)](https://npmjs.org/package/cli-argument-parser "View this project on npm") ![CI](https://github.com/danitseitlin/cli-argument-parser/workflows/CI/badge.svg) | ||
prefix: '--', | ||
equalitySign: '=' | ||
seperator: '=' | ||
} | ||
``` | ||
The `prefix` is a value which the argument must start with, `--` is the default one. (ex: `--arg=5`) <br> | ||
The `equalitySign` is a value which the argument must start with, `=` is the default one. (ex: `--arg=5`) <br> | ||
The `seperator` is a value which seperated between the argument name and argument value. `=` is the default one. (ex: `--arg=5`) <br> | ||
This gives you the abillity to configurate your cli arguments as you wish. |
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
6524