Skip to content
This repository was archived by the owner on Nov 28, 2022. It is now read-only.

Commit 041f998

Browse files
committed
v0.1.1
1 parent d8e33a7 commit 041f998

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

cli/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $ npm install -g @tunl/cli
1919
$ tunneler COMMAND
2020
running command...
2121
$ tunneler (-v|--version|version)
22-
@tunl/cli/0.1.0 darwin-x64 node-v16.4.2
22+
@tunl/cli/0.1.1 darwin-x64 node-v16.4.2
2323
$ tunneler --help [COMMAND]
2424
USAGE
2525
$ tunneler COMMAND
@@ -29,7 +29,7 @@ USAGE
2929
# Commands
3030
<!-- commands -->
3131
* [`tunneler consume [REMOTEPORT] [LOCALPORT] [CONNPARAM]`](#tunneler-consume-remoteport-localport-connparam)
32-
* [`tunneler handle [PORT]`](#tunneler-handle-port)
32+
* [`tunneler expose [PORT]`](#tunneler-expose-port)
3333
* [`tunneler help [COMMAND]`](#tunneler-help-command)
3434

3535
## `tunneler consume [REMOTEPORT] [LOCALPORT] [CONNPARAM]`
@@ -44,21 +44,21 @@ EXAMPLE
4444
$ tunneler consume 8080 8081 base64_connection_param==
4545
```
4646

47-
_See code: [src/commands/consume.ts](https://github.com/0x77dev/tunneler/blob/v0.1.0/src/commands/consume.ts)_
47+
_See code: [src/commands/consume.ts](https://github.com/0x77dev/tunneler/blob/v0.1.1/src/commands/consume.ts)_
4848

49-
## `tunneler handle [PORT]`
49+
## `tunneler expose [PORT]`
5050

5151
expose local port
5252

5353
```
5454
USAGE
55-
$ tunneler handle [PORT]
55+
$ tunneler expose [PORT]
5656
5757
EXAMPLE
58-
$ tunneler handle 8080
58+
$ tunneler expose 8080
5959
```
6060

61-
_See code: [src/commands/handle.ts](https://github.com/0x77dev/tunneler/blob/v0.1.0/src/commands/handle.ts)_
61+
_See code: [src/commands/expose.ts](https://github.com/0x77dev/tunneler/blob/v0.1.1/src/commands/expose.ts)_
6262

6363
## `tunneler help [COMMAND]`
6464

cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"@oclif/command": "^1",
1010
"@oclif/config": "^1",
1111
"@oclif/plugin-help": "^3",
12-
"@tunl/lib": "^0.1.0",
12+
"@tunl/lib": "^0.1.1",
1313
"tslib": "^1"
1414
},
1515
"description": "Tunneler CLI",
@@ -51,5 +51,5 @@
5151
"version": "oclif-dev readme && git add README.md"
5252
},
5353
"types": "lib/index.d.ts",
54-
"version": "0.1.0"
54+
"version": "0.1.1"
5555
}

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages": [
44
"./*"
55
],
6-
"version": "0.1.0"
6+
"version": "0.1.1"
77
}

lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@
4040
"test": "jest"
4141
},
4242
"types": "dist/index.d.ts",
43-
"version": "0.1.0"
43+
"version": "0.1.1"
4444
}

0 commit comments

Comments
 (0)