@corellium/corellium-cli 1.0.7 → 1.0.9
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/index.js +1 -0
- package/package.json +2 -2
package/index.js
CHANGED
@@ -8,6 +8,7 @@ require('dotenv').config()
|
|
8
8
|
async function run () {
|
9
9
|
return yargs(hideBin(process.argv))
|
10
10
|
.command(commands)
|
11
|
+
.scriptName('corellium')
|
11
12
|
.usage('Usage: corellium [OPTIONS]')
|
12
13
|
.demandCommand(1, '') // empty string overrides yargs nag message about specifying a command
|
13
14
|
.strict() // strict handling of commands and arguments
|
package/package.json
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
{
|
2
2
|
"name": "@corellium/corellium-cli",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.9",
|
4
4
|
"description": "Corellium CLI Tool",
|
5
5
|
"scripts": {
|
6
|
-
"corellium
|
6
|
+
"corellium": "node index.js",
|
7
7
|
"lint": "eslint .",
|
8
8
|
"lint-staged": "lint-staged",
|
9
9
|
"lint:fix": "eslint --fix ."
|