Skip to content

Commit

Permalink
fix test command
Browse files Browse the repository at this point in the history
  • Loading branch information
erfanium committed Jun 17, 2024
1 parent f03595d commit a15e380
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 19 deletions.
31 changes: 14 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ $ my-irancell login
```

<!-- toc -->
* [Installation](#installation)
* [Login](#login)
* [Usage](#usage)
* [Commands](#commands)
<!-- tocstop -->
Expand All @@ -28,7 +30,7 @@ $ npm install -g my-irancell-cli
$ my-irancell COMMAND
running command...
$ my-irancell (--version)
my-irancell-cli/0.0.0 linux-x64 node-v20.9.0
my-irancell-cli/0.1.0 linux-x64 node-v20.9.0
$ my-irancell --help [COMMAND]
USAGE
$ my-irancell COMMAND
Expand All @@ -37,17 +39,12 @@ USAGE
<!-- usagestop -->
# Commands
<!-- commands -->
- [my-irancell-cli](#my-irancell-cli)
- [Installation](#installation)
- [Login](#login)
- [Usage](#usage)
- [Commands](#commands)
- [`my-irancell buy [OFFERID]`](#my-irancell-buy-offerid)
- [`my-irancell help [COMMAND]`](#my-irancell-help-command)
- [`my-irancell login`](#my-irancell-login)
- [`my-irancell logout`](#my-irancell-logout)
- [`my-irancell offers`](#my-irancell-offers)
- [`my-irancell status`](#my-irancell-status)
* [`my-irancell buy [OFFERID]`](#my-irancell-buy-offerid)
* [`my-irancell help [COMMAND]`](#my-irancell-help-command)
* [`my-irancell login`](#my-irancell-login)
* [`my-irancell logout`](#my-irancell-logout)
* [`my-irancell offers`](#my-irancell-offers)
* [`my-irancell status`](#my-irancell-status)

## `my-irancell buy [OFFERID]`

Expand All @@ -61,7 +58,7 @@ DESCRIPTION
Buy an offer
```

_See code: [src/commands/buy/index.ts](https://github.com/erfanium/my-irancell-cli/blob/v0.0.0/src/commands/buy/index.ts)_
_See code: [src/commands/buy/index.ts](https://github.com/erfanium/my-irancell-cli/blob/v0.1.0/src/commands/buy/index.ts)_

## `my-irancell help [COMMAND]`

Expand Down Expand Up @@ -95,7 +92,7 @@ DESCRIPTION
Login to a new account
```

_See code: [src/commands/login/index.ts](https://github.com/erfanium/my-irancell-cli/blob/v0.0.0/src/commands/login/index.ts)_
_See code: [src/commands/login/index.ts](https://github.com/erfanium/my-irancell-cli/blob/v0.1.0/src/commands/login/index.ts)_

## `my-irancell logout`

Expand All @@ -109,7 +106,7 @@ DESCRIPTION
Logout from account
```

_See code: [src/commands/logout/index.ts](https://github.com/erfanium/my-irancell-cli/blob/v0.0.0/src/commands/logout/index.ts)_
_See code: [src/commands/logout/index.ts](https://github.com/erfanium/my-irancell-cli/blob/v0.1.0/src/commands/logout/index.ts)_

## `my-irancell offers`

Expand All @@ -123,7 +120,7 @@ DESCRIPTION
List all available offers
```

_See code: [src/commands/offers/index.ts](https://github.com/erfanium/my-irancell-cli/blob/v0.0.0/src/commands/offers/index.ts)_
_See code: [src/commands/offers/index.ts](https://github.com/erfanium/my-irancell-cli/blob/v0.1.0/src/commands/offers/index.ts)_

## `my-irancell status`

Expand All @@ -137,5 +134,5 @@ DESCRIPTION
Show account status
```

_See code: [src/commands/status/index.ts](https://github.com/erfanium/my-irancell-cli/blob/v0.0.0/src/commands/status/index.ts)_
_See code: [src/commands/status/index.ts](https://github.com/erfanium/my-irancell-cli/blob/v0.1.0/src/commands/status/index.ts)_
<!-- commandsstop -->
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,8 @@
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"test": "tsc --noEmit",
"version": "oclif readme && git add README.md"
},
"types": "dist/index.d.ts"
Expand Down

0 comments on commit a15e380

Please sign in to comment.