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

Commit 6b319b2

Browse files
committed
chore(release): 1.25.1 [skip ci]
## [1.25.1](v1.25.0...v1.25.1) (2020-12-02) ### Bug Fixes * find yarn.lock in a yarn workspace ([#156](#156)) ([fd59d36](fd59d36))
1 parent fd59d36 commit 6b319b2

File tree

3 files changed

+21
-12
lines changed

3 files changed

+21
-12
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# [1.25.0](https://github.com/oclif/dev-cli/compare/v1.24.4...v1.25.0) (2020-12-02)
2+
3+
4+
### Features
5+
6+
* add macos uninstaller ([#137](https://github.com/oclif/dev-cli/issues/137)) ([6e3b34b](https://github.com/oclif/dev-cli/commit/6e3b34bba96de037211fd9699b0a59a41fc2f654))
7+
8+
9+
110
## [1.24.4](https://github.com/oclif/dev-cli/compare/v1.24.3...v1.24.4) (2020-12-02)
211

312

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $ npm install -g @oclif/dev-cli
2222
$ oclif-dev COMMAND
2323
running command...
2424
$ oclif-dev (-v|--version|version)
25-
@oclif/dev-cli/1.25.0 linux-x64 node-v12.0.0
25+
@oclif/dev-cli/1.25.1 linux-x64 node-v12.0.0
2626
$ oclif-dev --help [COMMAND]
2727
USAGE
2828
$ oclif-dev COMMAND
@@ -72,7 +72,7 @@ ARGUMENTS
7272
PATH [default: .] path to plugin
7373
```
7474

75-
_See code: [src/commands/manifest.ts](https://github.com/oclif/dev-cli/blob/v1.25.0/src/commands/manifest.ts)_
75+
_See code: [src/commands/manifest.ts](https://github.com/oclif/dev-cli/blob/v1.25.1/src/commands/manifest.ts)_
7676

7777
## `oclif-dev pack`
7878

@@ -91,7 +91,7 @@ DESCRIPTION
9191
This can be used to create oclif CLIs that use the system node or that come preloaded with a node binary.
9292
```
9393

94-
_See code: [src/commands/pack/index.ts](https://github.com/oclif/dev-cli/blob/v1.25.0/src/commands/pack/index.ts)_
94+
_See code: [src/commands/pack/index.ts](https://github.com/oclif/dev-cli/blob/v1.25.1/src/commands/pack/index.ts)_
9595

9696
## `oclif-dev pack:deb`
9797

@@ -105,7 +105,7 @@ OPTIONS
105105
-r, --root=root (required) [default: .] path to oclif CLI root
106106
```
107107

108-
_See code: [src/commands/pack/deb.ts](https://github.com/oclif/dev-cli/blob/v1.25.0/src/commands/pack/deb.ts)_
108+
_See code: [src/commands/pack/deb.ts](https://github.com/oclif/dev-cli/blob/v1.25.1/src/commands/pack/deb.ts)_
109109

110110
## `oclif-dev pack:macos`
111111

@@ -119,7 +119,7 @@ OPTIONS
119119
-r, --root=root (required) [default: .] path to oclif CLI root
120120
```
121121

122-
_See code: [src/commands/pack/macos.ts](https://github.com/oclif/dev-cli/blob/v1.25.0/src/commands/pack/macos.ts)_
122+
_See code: [src/commands/pack/macos.ts](https://github.com/oclif/dev-cli/blob/v1.25.1/src/commands/pack/macos.ts)_
123123

124124
## `oclif-dev pack:win`
125125

@@ -133,7 +133,7 @@ OPTIONS
133133
-r, --root=root (required) [default: .] path to oclif CLI root
134134
```
135135

136-
_See code: [src/commands/pack/win.ts](https://github.com/oclif/dev-cli/blob/v1.25.0/src/commands/pack/win.ts)_
136+
_See code: [src/commands/pack/win.ts](https://github.com/oclif/dev-cli/blob/v1.25.1/src/commands/pack/win.ts)_
137137

138138
## `oclif-dev publish`
139139

@@ -151,7 +151,7 @@ DESCRIPTION
151151
"aws-sdk" will need to be installed as a devDependency to publish.
152152
```
153153

154-
_See code: [src/commands/publish/index.ts](https://github.com/oclif/dev-cli/blob/v1.25.0/src/commands/publish/index.ts)_
154+
_See code: [src/commands/publish/index.ts](https://github.com/oclif/dev-cli/blob/v1.25.1/src/commands/publish/index.ts)_
155155

156156
## `oclif-dev publish:deb`
157157

@@ -165,7 +165,7 @@ OPTIONS
165165
-r, --root=root (required) [default: .] path to oclif CLI root
166166
```
167167

168-
_See code: [src/commands/publish/deb.ts](https://github.com/oclif/dev-cli/blob/v1.25.0/src/commands/publish/deb.ts)_
168+
_See code: [src/commands/publish/deb.ts](https://github.com/oclif/dev-cli/blob/v1.25.1/src/commands/publish/deb.ts)_
169169

170170
## `oclif-dev publish:macos`
171171

@@ -179,7 +179,7 @@ OPTIONS
179179
-r, --root=root (required) [default: .] path to oclif CLI root
180180
```
181181

182-
_See code: [src/commands/publish/macos.ts](https://github.com/oclif/dev-cli/blob/v1.25.0/src/commands/publish/macos.ts)_
182+
_See code: [src/commands/publish/macos.ts](https://github.com/oclif/dev-cli/blob/v1.25.1/src/commands/publish/macos.ts)_
183183

184184
## `oclif-dev publish:win`
185185

@@ -193,7 +193,7 @@ OPTIONS
193193
-r, --root=root (required) [default: .] path to oclif CLI root
194194
```
195195

196-
_See code: [src/commands/publish/win.ts](https://github.com/oclif/dev-cli/blob/v1.25.0/src/commands/publish/win.ts)_
196+
_See code: [src/commands/publish/win.ts](https://github.com/oclif/dev-cli/blob/v1.25.1/src/commands/publish/win.ts)_
197197

198198
## `oclif-dev readme`
199199

@@ -217,5 +217,5 @@ DESCRIPTION
217217
Customize the code URL prefix by setting oclif.repositoryPrefix in package.json.
218218
```
219219

220-
_See code: [src/commands/readme.ts](https://github.com/oclif/dev-cli/blob/v1.25.0/src/commands/readme.ts)_
220+
_See code: [src/commands/readme.ts](https://github.com/oclif/dev-cli/blob/v1.25.1/src/commands/readme.ts)_
221221
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@oclif/dev-cli",
33
"description": "helpers for oclif CLIs",
4-
"version": "1.25.0",
4+
"version": "1.25.1",
55
"author": "Jeff Dickey @jdxcode",
66
"bin": {
77
"oclif-dev": "./bin/run"

0 commit comments

Comments
 (0)