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.26.4 [skip ci]
Browse files Browse the repository at this point in the history
## [1.26.4](v1.26.3...v1.26.4) (2021-11-29)

### Bug Fixes

* remove transitive dep on lodash.template ([#438](#438)) ([80ffc53](80ffc53))
  • Loading branch information
semantic-release-bot committed Nov 29, 2021
1 parent 80ffc53 commit 2f1a545
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,12 @@
## [1.26.4](https://github.com/oclif/dev-cli/compare/v1.26.3...v1.26.4) (2021-11-29)


### Bug Fixes

* remove transitive dep on lodash.template ([#438](https://github.com/oclif/dev-cli/issues/438)) ([80ffc53](https://github.com/oclif/dev-cli/commit/80ffc53e9fe57f62d04e66fec5572f9d57335253))



## [1.26.3](https://github.com/oclif/dev-cli/compare/v1.26.2...v1.26.3) (2021-11-24)


Expand Down
22 changes: 11 additions & 11 deletions README.md
Expand Up @@ -21,7 +21,7 @@ $ npm install -g @oclif/dev-cli
$ oclif-dev COMMAND
running command...
$ oclif-dev (-v|--version|version)
@oclif/dev-cli/1.26.3 linux-x64 node-v14.18.1
@oclif/dev-cli/1.26.4 linux-x64 node-v14.18.1
$ oclif-dev --help [COMMAND]
USAGE
$ oclif-dev COMMAND
Expand Down Expand Up @@ -71,7 +71,7 @@ ARGUMENTS
PATH [default: .] path to plugin
```

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

## `oclif-dev pack`

Expand All @@ -90,7 +90,7 @@ 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.26.3/src/commands/pack/index.ts)_
_See code: [src/commands/pack/index.ts](https://github.com/oclif/dev-cli/blob/v1.26.4/src/commands/pack/index.ts)_

## `oclif-dev pack:deb`

Expand All @@ -104,7 +104,7 @@ 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.26.3/src/commands/pack/deb.ts)_
_See code: [src/commands/pack/deb.ts](https://github.com/oclif/dev-cli/blob/v1.26.4/src/commands/pack/deb.ts)_

## `oclif-dev pack:macos`

Expand All @@ -118,7 +118,7 @@ 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.26.3/src/commands/pack/macos.ts)_
_See code: [src/commands/pack/macos.ts](https://github.com/oclif/dev-cli/blob/v1.26.4/src/commands/pack/macos.ts)_

## `oclif-dev pack:win`

Expand All @@ -132,7 +132,7 @@ 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.26.3/src/commands/pack/win.ts)_
_See code: [src/commands/pack/win.ts](https://github.com/oclif/dev-cli/blob/v1.26.4/src/commands/pack/win.ts)_

## `oclif-dev publish`

Expand All @@ -150,7 +150,7 @@ 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.26.3/src/commands/publish/index.ts)_
_See code: [src/commands/publish/index.ts](https://github.com/oclif/dev-cli/blob/v1.26.4/src/commands/publish/index.ts)_

## `oclif-dev publish:deb`

Expand All @@ -164,7 +164,7 @@ 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.26.3/src/commands/publish/deb.ts)_
_See code: [src/commands/publish/deb.ts](https://github.com/oclif/dev-cli/blob/v1.26.4/src/commands/publish/deb.ts)_

## `oclif-dev publish:macos`

Expand All @@ -178,7 +178,7 @@ 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.26.3/src/commands/publish/macos.ts)_
_See code: [src/commands/publish/macos.ts](https://github.com/oclif/dev-cli/blob/v1.26.4/src/commands/publish/macos.ts)_

## `oclif-dev publish:win`

Expand All @@ -192,7 +192,7 @@ 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.26.3/src/commands/publish/win.ts)_
_See code: [src/commands/publish/win.ts](https://github.com/oclif/dev-cli/blob/v1.26.4/src/commands/publish/win.ts)_

## `oclif-dev readme`

Expand All @@ -216,5 +216,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.26.3/src/commands/readme.ts)_
_See code: [src/commands/readme.ts](https://github.com/oclif/dev-cli/blob/v1.26.4/src/commands/readme.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "@oclif/dev-cli",
"description": "helpers for oclif CLIs",
"version": "1.26.3",
"version": "1.26.4",
"author": "Jeff Dickey @jdxcode",
"bin": {
"oclif-dev": "./bin/run"
Expand Down

0 comments on commit 2f1a545

Please sign in to comment.