Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Commit

Permalink
2.0.0-alpha.9
Browse files Browse the repository at this point in the history
  • Loading branch information
FaizanDurrani committed Sep 23, 2021
1 parent 8eccce2 commit a75e38a
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 4 deletions.
69 changes: 68 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ npm install -g paperback-cli
$ paperback COMMAND
running command...
$ paperback (-v|--version|version)
paperback-cli/2.0.0-alpha.8 darwin-x64 node-v15.3.0
paperback-cli/2.0.0-alpha.9 darwin-x64 node-v15.3.0
$ paperback --help [COMMAND]
USAGE
$ paperback COMMAND
Expand All @@ -28,7 +28,26 @@ USAGE
<!-- usagestop -->
# Commands
<!-- commands -->
* [`paperback bundle`](#paperback-bundle)
* [`paperback help [COMMAND]`](#paperback-help-command)
* [`paperback logcat`](#paperback-logcat)
* [`paperback serve`](#paperback-serve)
* [`paperback test [SOURCE]`](#paperback-test-source)

## `paperback bundle`

Builds all the sources in the repository and generates a versioning file

```
USAGE
$ paperback bundle
OPTIONS
-h, --help show CLI help
--folder=folder Subfolder to output to
```

_See code: [src/commands/bundle.ts](https://github.com/FaizanDurrani/paperback-cli/blob/v2.0.0-alpha.9/src/commands/bundle.ts)_

## `paperback help [COMMAND]`

Expand All @@ -46,4 +65,52 @@ OPTIONS
```

_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.3/src/commands/help.ts)_

## `paperback logcat`

describe the command here

```
USAGE
$ paperback logcat
OPTIONS
--ip=ip [default: localhost]
--port=port [default: 27015]
```

_See code: [src/commands/logcat.ts](https://github.com/FaizanDurrani/paperback-cli/blob/v2.0.0-alpha.9/src/commands/logcat.ts)_

## `paperback serve`

Build the sources and start a local server

```
USAGE
$ paperback serve
OPTIONS
-h, --help show CLI help
-p, --port=port [default: 8080]
```

_See code: [src/commands/serve.ts](https://github.com/FaizanDurrani/paperback-cli/blob/v2.0.0-alpha.9/src/commands/serve.ts)_

## `paperback test [SOURCE]`

describe the command here

```
USAGE
$ paperback test [SOURCE]
ARGUMENTS
SOURCE (optional) The source to test
OPTIONS
--ip=ip
--port=port [default: 27015]
```

_See code: [src/commands/test.ts](https://github.com/FaizanDurrani/paperback-cli/blob/v2.0.0-alpha.9/src/commands/test.ts)_
<!-- commandsstop -->
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "paperback-cli",
"description": "Paperback CLI for common tools",
"version": "2.0.0-alpha.8",
"version": "2.0.0-alpha.9",
"author": "Faizan Durrani",
"bin": {
"paperback": "bin/run"
Expand Down

0 comments on commit a75e38a

Please sign in to comment.