Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2 from idexio/hotfix/status-command-use-new-npm
Browse files Browse the repository at this point in the history
Hotfix/status command use new npm
  • Loading branch information
yennieb committed May 7, 2019
2 parents cb763bb + 7c74b17 commit 29e9593
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions aurad-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $ npm install -g @idexio/idexd-cli
$ idex COMMAND
running command...
$ idex (-v|--version|version)
@idexio/idexd-cli/0.2.0 darwin-x64 node-v11.14.0
@idexio/idexd-cli/0.2.1 darwin-x64 node-v11.14.0
$ idex --help [COMMAND]
USAGE
$ idex COMMAND
Expand All @@ -43,7 +43,7 @@ USAGE
$ idex config
```

_See code: [src/commands/config.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/config.js)_
_See code: [src/commands/config.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/config.js)_

## `idex help [COMMAND]`

Expand Down Expand Up @@ -74,7 +74,7 @@ OPTIONS
-n, --name=name name of log to print (idexd, parity or mysql)
```

_See code: [src/commands/logs.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/logs.js)_
_See code: [src/commands/logs.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/logs.js)_

## `idex restart`

Expand All @@ -88,7 +88,7 @@ OPTIONS
-r, --rpc=rpc rpc server
```

_See code: [src/commands/restart.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/restart.js)_
_See code: [src/commands/restart.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/restart.js)_

## `idex start`

Expand All @@ -102,7 +102,7 @@ OPTIONS
-r, --rpc=rpc rpc server
```

_See code: [src/commands/start.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/start.js)_
_See code: [src/commands/start.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/start.js)_

## `idex status`

Expand All @@ -113,7 +113,7 @@ USAGE
$ idex status
```

_See code: [src/commands/status.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/status.js)_
_See code: [src/commands/status.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/status.js)_

## `idex stop`

Expand All @@ -124,7 +124,7 @@ USAGE
$ idex stop
```

_See code: [src/commands/stop.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/stop.js)_
_See code: [src/commands/stop.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/stop.js)_

## `idex up`

Expand All @@ -135,5 +135,5 @@ USAGE
$ idex up
```

_See code: [src/commands/up.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/up.js)_
_See code: [src/commands/up.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/up.js)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion aurad-cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aurad-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@idexio/idexd-cli",
"version": "0.2.0",
"version": "0.2.1",
"bin": {
"idex": "./bin/run"
},
Expand Down
2 changes: 1 addition & 1 deletion aurad-cli/src/commands/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Docker = require('../shared/docker');
const package_json = require('../../package.json');
const homedir = require('os').homedir();
const semver = require('semver');
const registryUri = 'https://registry.npmjs.org/@auroradao/aurad-cli';
const registryUri = 'https://registry.npmjs.org/@idexio/idexd-cli';
const { STAKING_HOST } = require('../shared/config');

class StatusCommand extends Command {
Expand Down

0 comments on commit 29e9593

Please sign in to comment.