biz-a-cli 1.0.0 → 2.0.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.
Files changed (2) hide show
  1. package/bin/index.js +3 -3
  2. package/package.json +1 -1
package/bin/index.js CHANGED
@@ -8,9 +8,9 @@ const vm= require("vm");
8
8
  const { option, number } = require("yargs");
9
9
 
10
10
  const options = yargs
11
- .usage("Usage: -c <company name> -p <password> -s <server url>")
12
- .option("c", {alias:"name", describe: "Company Name", type:"string", demandOption:true})
13
- .option("p", {alias:"password", describe:"Password", type: "string", demandOption: true})
11
+ //.usage("Usage: -c <company name> -p <password> -s <server url>")
12
+ //.option("c", {alias:"name", describe: "Company Name", type:"string", demandOption:true})
13
+ //.option("p", {alias:"password", describe:"Password", type: "string", demandOption: true})
14
14
  .option("s", {alias:"server", describe:"Server URL", type:"string", demandOption:true})
15
15
  .option("i", {alias:"dbindex", describe:"database index", type:number, demandOption:true})
16
16
  .argv;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz-a-cli",
3
- "version": "1.0.0",
3
+ "version": "2.0.0",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {