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

Commit

Permalink
chore(release): 1.24.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.24.0](v1.23.1...v1.24.0) (2020-11-19)

### Features

* add support for custom help classes ([#141](#141)) ([810e7c1](810e7c1))
  • Loading branch information
oclif-bot committed Nov 19, 2020
1 parent 810e7c1 commit 7386f79
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 35 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [1.23.1](https://github.com/oclif/dev-cli/compare/v1.23.0...v1.23.1) (2020-11-16)


### Bug Fixes

* downgrade fs-extras ([#264](https://github.com/oclif/dev-cli/issues/264)) ([5a75e79](https://github.com/oclif/dev-cli/commit/5a75e79abd44d762a80b675a7c8650d0ee2cb110))



# [1.23.0](https://github.com/oclif/dev-cli/compare/v1.22.2...v1.23.0) (2020-11-12)


Expand Down
46 changes: 12 additions & 34 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $ npm install -g @oclif/dev-cli
$ oclif-dev COMMAND
running command...
$ oclif-dev (-v|--version|version)
@oclif/dev-cli/1.23.1 linux-x64 node-v12.0.0
@oclif/dev-cli/1.24.0 linux-x64 node-v12.0.0
$ oclif-dev --help [COMMAND]
USAGE
$ oclif-dev COMMAND
Expand All @@ -45,8 +45,6 @@ USAGE

## `oclif-dev help [COMMAND]`

display help for oclif-dev

```
USAGE
$ oclif-dev help [COMMAND]
Expand All @@ -58,12 +56,10 @@ OPTIONS
--all see all commands in CLI
```

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

## `oclif-dev manifest [PATH]`

generates plugin manifest json

```
USAGE
$ oclif-dev manifest [PATH]
Expand All @@ -72,12 +68,10 @@ ARGUMENTS
PATH [default: .] path to plugin
```

_See code: [src/commands/manifest.ts](https://github.com/oclif/dev-cli/blob/v1.23.1/src/commands/manifest.ts)_
_See code: [src/commands/manifest.ts](https://github.com/oclif/dev-cli/blob/v1.24.0/src/commands/manifest.ts)_

## `oclif-dev pack`

packages oclif cli into tarballs

```
USAGE
$ oclif-dev pack
Expand All @@ -91,12 +85,10 @@ DESCRIPTION
This can be used to create oclif CLIs that use the system node or that come preloaded with a node binary.
```

_See code: [src/commands/pack/index.ts](https://github.com/oclif/dev-cli/blob/v1.23.1/src/commands/pack/index.ts)_
_See code: [src/commands/pack/index.ts](https://github.com/oclif/dev-cli/blob/v1.24.0/src/commands/pack/index.ts)_

## `oclif-dev pack:deb`

pack CLI into debian package

```
USAGE
$ oclif-dev pack:deb
Expand All @@ -105,12 +97,10 @@ OPTIONS
-r, --root=root (required) [default: .] path to oclif CLI root
```

_See code: [src/commands/pack/deb.ts](https://github.com/oclif/dev-cli/blob/v1.23.1/src/commands/pack/deb.ts)_
_See code: [src/commands/pack/deb.ts](https://github.com/oclif/dev-cli/blob/v1.24.0/src/commands/pack/deb.ts)_

## `oclif-dev pack:macos`

pack CLI into MacOS .pkg

```
USAGE
$ oclif-dev pack:macos
Expand All @@ -119,12 +109,10 @@ OPTIONS
-r, --root=root (required) [default: .] path to oclif CLI root
```

_See code: [src/commands/pack/macos.ts](https://github.com/oclif/dev-cli/blob/v1.23.1/src/commands/pack/macos.ts)_
_See code: [src/commands/pack/macos.ts](https://github.com/oclif/dev-cli/blob/v1.24.0/src/commands/pack/macos.ts)_

## `oclif-dev pack:win`

create windows installer from oclif CLI

```
USAGE
$ oclif-dev pack:win
Expand All @@ -133,12 +121,10 @@ OPTIONS
-r, --root=root (required) [default: .] path to oclif CLI root
```

_See code: [src/commands/pack/win.ts](https://github.com/oclif/dev-cli/blob/v1.23.1/src/commands/pack/win.ts)_
_See code: [src/commands/pack/win.ts](https://github.com/oclif/dev-cli/blob/v1.24.0/src/commands/pack/win.ts)_

## `oclif-dev publish`

publish an oclif CLI to S3

```
USAGE
$ oclif-dev publish
Expand All @@ -151,12 +137,10 @@ DESCRIPTION
"aws-sdk" will need to be installed as a devDependency to publish.
```

_See code: [src/commands/publish/index.ts](https://github.com/oclif/dev-cli/blob/v1.23.1/src/commands/publish/index.ts)_
_See code: [src/commands/publish/index.ts](https://github.com/oclif/dev-cli/blob/v1.24.0/src/commands/publish/index.ts)_

## `oclif-dev publish:deb`

publish deb package built with pack:deb

```
USAGE
$ oclif-dev publish:deb
Expand All @@ -165,12 +149,10 @@ OPTIONS
-r, --root=root (required) [default: .] path to oclif CLI root
```

_See code: [src/commands/publish/deb.ts](https://github.com/oclif/dev-cli/blob/v1.23.1/src/commands/publish/deb.ts)_
_See code: [src/commands/publish/deb.ts](https://github.com/oclif/dev-cli/blob/v1.24.0/src/commands/publish/deb.ts)_

## `oclif-dev publish:macos`

publish macos installers built with pack:macos

```
USAGE
$ oclif-dev publish:macos
Expand All @@ -179,12 +161,10 @@ OPTIONS
-r, --root=root (required) [default: .] path to oclif CLI root
```

_See code: [src/commands/publish/macos.ts](https://github.com/oclif/dev-cli/blob/v1.23.1/src/commands/publish/macos.ts)_
_See code: [src/commands/publish/macos.ts](https://github.com/oclif/dev-cli/blob/v1.24.0/src/commands/publish/macos.ts)_

## `oclif-dev publish:win`

publish windows installers built with pack:win

```
USAGE
$ oclif-dev publish:win
Expand All @@ -193,12 +173,10 @@ OPTIONS
-r, --root=root (required) [default: .] path to oclif CLI root
```

_See code: [src/commands/publish/win.ts](https://github.com/oclif/dev-cli/blob/v1.23.1/src/commands/publish/win.ts)_
_See code: [src/commands/publish/win.ts](https://github.com/oclif/dev-cli/blob/v1.24.0/src/commands/publish/win.ts)_

## `oclif-dev readme`

adds commands to README.md in current directory

```
USAGE
$ oclif-dev readme
Expand All @@ -217,5 +195,5 @@ DESCRIPTION
Customize the code URL prefix by setting oclif.repositoryPrefix in package.json.
```

_See code: [src/commands/readme.ts](https://github.com/oclif/dev-cli/blob/v1.23.1/src/commands/readme.ts)_
_See code: [src/commands/readme.ts](https://github.com/oclif/dev-cli/blob/v1.24.0/src/commands/readme.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@oclif/dev-cli",
"description": "helpers for oclif CLIs",
"version": "1.23.1",
"version": "1.24.0",
"author": "Jeff Dickey @jdxcode",
"bin": {
"oclif-dev": "./bin/run"
Expand Down

0 comments on commit 7386f79

Please sign in to comment.