Skip to content

Commit ae4bdef

Browse files
committed
0.4.0
1 parent 3f4b9f1 commit ae4bdef

File tree

3 files changed

+27
-10
lines changed

3 files changed

+27
-10
lines changed

README.md

+25-8
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ $ npm install -g @codingtools/cdt
4040
$ cdt COMMAND
4141
running command...
4242
$ cdt (-v|--version|version)
43-
@codingtools/cdt/0.3.0 darwin-x64 node-v12.9.0
43+
@codingtools/cdt/0.4.0 darwin-x64 node-v12.9.0
4444
$ cdt --help [COMMAND]
4545
USAGE
4646
$ cdt COMMAND
@@ -52,6 +52,7 @@ USAGE
5252
* [`cdt autocomplete [SHELL]`](#cdt-autocomplete-shell)
5353
* [`cdt avro [COMMAND]`](#cdt-avro-command)
5454
* [`cdt bundlephobia [PACKAGE]`](#cdt-bundlephobia-package)
55+
* [`cdt commands`](#cdt-commands)
5556
* [`cdt crypto [STRING]`](#cdt-crypto-string)
5657
* [`cdt datetime [DATE]`](#cdt-datetime-date)
5758
* [`cdt hash [STRING]`](#cdt-hash-string)
@@ -98,7 +99,7 @@ OPTIONS
9899
-t, --schemaType=schemaType schema type file path
99100
```
100101

101-
_See code: [src/commands/avro.ts](https://github.com/codingtools/cdt/blob/v0.3.0/src/commands/avro.ts)_
102+
_See code: [src/commands/avro.ts](https://github.com/codingtools/cdt/blob/v0.4.0/src/commands/avro.ts)_
102103

103104
## `cdt bundlephobia [PACKAGE]`
104105

@@ -114,7 +115,23 @@ OPTIONS
114115
-p, --packages=packages packages for which cost is required, can pass more than one separated by space
115116
```
116117

117-
_See code: [src/commands/bundlephobia.ts](https://github.com/codingtools/cdt/blob/v0.3.0/src/commands/bundlephobia.ts)_
118+
_See code: [src/commands/bundlephobia.ts](https://github.com/codingtools/cdt/blob/v0.4.0/src/commands/bundlephobia.ts)_
119+
120+
## `cdt commands`
121+
122+
list all the commands
123+
124+
```
125+
USAGE
126+
$ cdt commands
127+
128+
OPTIONS
129+
-h, --help show CLI help
130+
-j, --json output in json format
131+
--hidden also show hidden commands
132+
```
133+
134+
_See code: [@oclif/plugin-commands](https://github.com/oclif/plugin-commands/blob/v1.2.3/src/commands/commands.ts)_
118135

119136
## `cdt crypto [STRING]`
120137

@@ -134,7 +151,7 @@ OPTIONS
134151
-s, --string=string string to be encrypted/decrypted
135152
```
136153

137-
_See code: [src/commands/crypto.ts](https://github.com/codingtools/cdt/blob/v0.3.0/src/commands/crypto.ts)_
154+
_See code: [src/commands/crypto.ts](https://github.com/codingtools/cdt/blob/v0.4.0/src/commands/crypto.ts)_
138155

139156
## `cdt datetime [DATE]`
140157

@@ -152,7 +169,7 @@ OPTIONS
152169
-z, --timezone=timezone Timezone for Datetime parsing, default: Your timezone
153170
```
154171

155-
_See code: [src/commands/datetime.ts](https://github.com/codingtools/cdt/blob/v0.3.0/src/commands/datetime.ts)_
172+
_See code: [src/commands/datetime.ts](https://github.com/codingtools/cdt/blob/v0.4.0/src/commands/datetime.ts)_
156173

157174
## `cdt hash [STRING]`
158175

@@ -170,7 +187,7 @@ OPTIONS
170187
-t, --type=type type of hash [SHA1(default), MD5, SHA256, SHA512, RMD160 or RIPEMD160]
171188
```
172189

173-
_See code: [src/commands/hash.ts](https://github.com/codingtools/cdt/blob/v0.3.0/src/commands/hash.ts)_
190+
_See code: [src/commands/hash.ts](https://github.com/codingtools/cdt/blob/v0.4.0/src/commands/hash.ts)_
174191

175192
## `cdt help [COMMAND]`
176193

@@ -204,7 +221,7 @@ OPTIONS
204221
-t, --type=type type of file to be minified, it will try to find type with extension supported: JS, HTML/HTM, CSS
205222
```
206223

207-
_See code: [src/commands/minify.ts](https://github.com/codingtools/cdt/blob/v0.3.0/src/commands/minify.ts)_
224+
_See code: [src/commands/minify.ts](https://github.com/codingtools/cdt/blob/v0.4.0/src/commands/minify.ts)_
208225

209226
## `cdt view [FILE]`
210227

@@ -220,7 +237,7 @@ OPTIONS
220237
-n, --num=num no. of rows to show, default:10
221238
```
222239

223-
_See code: [src/commands/view.ts](https://github.com/codingtools/cdt/blob/v0.3.0/src/commands/view.ts)_
240+
_See code: [src/commands/view.ts](https://github.com/codingtools/cdt/blob/v0.4.0/src/commands/view.ts)_
224241
<!-- commandsstop -->
225242

226243
## Acknowledgement

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@codingtools/cdt",
33
"description": "CLI for Developers",
4-
"version": "0.3.0",
4+
"version": "0.4.0",
55
"author": "Ashish Patel @ashishpatel0720",
66
"bin": {
77
"cdt": "./bin/run"

0 commit comments

Comments
 (0)