@herodevs/cli 0.1.10 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/package.json +1 -1
- package/dist/shared/lib/version-update.js +1 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ $ npm install -g @herodevs/cli
|
|
|
18
18
|
$ @herodevs/cli COMMAND
|
|
19
19
|
running command...
|
|
20
20
|
$ @herodevs/cli (--version)
|
|
21
|
-
@herodevs/cli/0.1.
|
|
21
|
+
@herodevs/cli/0.1.12 darwin-arm64 node-v18.17.1
|
|
22
22
|
$ @herodevs/cli --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ @herodevs/cli COMMAND
|
|
@@ -63,7 +63,7 @@ EXAMPLES
|
|
|
63
63
|
$ @herodevs/cli committer
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
-
_See code: [dist/commands/committer/index.ts](https://github.com/herodevs/cli/blob/v0.1.
|
|
66
|
+
_See code: [dist/commands/committer/index.ts](https://github.com/herodevs/cli/blob/v0.1.12/dist/commands/committer/index.ts)_
|
|
67
67
|
|
|
68
68
|
## `@herodevs/cli committer:get-all [flags [-s][-e][-x]]`
|
|
69
69
|
|
|
@@ -87,7 +87,7 @@ EXAMPLES
|
|
|
87
87
|
$ @herodevs/cli committer get-all
|
|
88
88
|
```
|
|
89
89
|
|
|
90
|
-
_See code: [dist/commands/committer/get-all.ts](https://github.com/herodevs/cli/blob/v0.1.
|
|
90
|
+
_See code: [dist/commands/committer/get-all.ts](https://github.com/herodevs/cli/blob/v0.1.12/dist/commands/committer/get-all.ts)_
|
|
91
91
|
|
|
92
92
|
## `@herodevs/cli help [COMMANDS]`
|
|
93
93
|
|
|
@@ -373,5 +373,5 @@ EXAMPLES
|
|
|
373
373
|
$ @herodevs/cli update verify
|
|
374
374
|
```
|
|
375
375
|
|
|
376
|
-
_See code: [dist/commands/update/verify.ts](https://github.com/herodevs/cli/blob/v0.1.
|
|
376
|
+
_See code: [dist/commands/update/verify.ts](https://github.com/herodevs/cli/blob/v0.1.12/dist/commands/update/verify.ts)_
|
|
377
377
|
<!-- commandsstop -->
|
package/dist/package.json
CHANGED
|
@@ -12,8 +12,7 @@ async function wrapCommandToHandleDebugging(command, message, commandInstance) {
|
|
|
12
12
|
catch (ex) {
|
|
13
13
|
console.info('EX', ex);
|
|
14
14
|
// if command fails because debugger is attached, log the message
|
|
15
|
-
if (!!~ex.toString().toLowerCase().indexOf('debugger attached')
|
|
16
|
-
!!~ex.toString().toLowerCase().indexOf('the following package')) {
|
|
15
|
+
if (!!~ex.toString().toLowerCase().indexOf('debugger attached')) {
|
|
17
16
|
commandInstance.log(message);
|
|
18
17
|
}
|
|
19
18
|
else {
|
package/oclif.manifest.json
CHANGED