Skip to content

Commit

Permalink
chore(release): 1.5.0 [skip ci]
Browse files Browse the repository at this point in the history
<a name="1.5.0"></a>
# [1.5.0](f833799...v1.5.0) (2018-03-23)

### Features

* add hook generator ([#77](#77)) ([4106708](4106708))
  • Loading branch information
oclif-bot committed Mar 23, 2018
1 parent 4106708 commit dc93f10
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
<a name="1.5.0"></a>
# [1.5.0](https://github.com/oclif/oclif/compare/f8337999b5a22cbe9bfa90a7d7a026a1a15a333b...v1.5.0) (2018-03-23)


### Features

* add hook generator ([#77](https://github.com/oclif/oclif/issues/77)) ([4106708](https://github.com/oclif/oclif/commit/4106708))

<a name="1.4.12"></a>
## [1.4.12](https://github.com/oclif/oclif/compare/43ebebaec031697f7e1595e79771d15c76e11cd6...v1.4.12) (2018-03-23)

Expand Down
28 changes: 24 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ hello world from ./src/hello.js!

* [oclif command NAME](#command-name)
* [oclif help [COMMAND]](#help-command)
* [oclif hook NAME](#hook-name)
* [oclif multi [PATH]](#multi-path)
* [oclif plugin [PATH]](#plugin-path)
* [oclif single [PATH]](#single-path)
Expand All @@ -142,7 +143,7 @@ OPTIONS
--force overwrite existing files
```

_See code: [src/commands/command.ts](https://github.com/oclif/oclif/blob/v1.4.12/src/commands/command.ts)_
_See code: [src/commands/command.ts](https://github.com/oclif/oclif/blob/v1.5.0/src/commands/command.ts)_

## help [COMMAND]

Expand All @@ -161,6 +162,25 @@ OPTIONS

_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v1.1.6/src/commands/help.ts)_

## hook NAME

add a hook to an existing CLI or plugin

```
USAGE
$ oclif hook NAME
ARGUMENTS
NAME name of hook (snake_case)
OPTIONS
--defaults use defaults for every setting
--event=event [default: init] event to run hook on
--force overwrite existing files
```

_See code: [src/commands/hook.ts](https://github.com/oclif/oclif/blob/v1.5.0/src/commands/hook.ts)_

## multi [PATH]

generate a new multi-command CLI
Expand All @@ -178,7 +198,7 @@ OPTIONS
--options=options (yarn|typescript|tslint|semantic-release|mocha)
```

_See code: [src/commands/multi.ts](https://github.com/oclif/oclif/blob/v1.4.12/src/commands/multi.ts)_
_See code: [src/commands/multi.ts](https://github.com/oclif/oclif/blob/v1.5.0/src/commands/multi.ts)_

## plugin [PATH]

Expand All @@ -197,7 +217,7 @@ OPTIONS
--options=options (yarn|typescript|tslint|semantic-release|mocha)
```

_See code: [src/commands/plugin.ts](https://github.com/oclif/oclif/blob/v1.4.12/src/commands/plugin.ts)_
_See code: [src/commands/plugin.ts](https://github.com/oclif/oclif/blob/v1.5.0/src/commands/plugin.ts)_

## single [PATH]

Expand All @@ -216,7 +236,7 @@ OPTIONS
--options=options (yarn|typescript|tslint|semantic-release|mocha)
```

_See code: [src/commands/single.ts](https://github.com/oclif/oclif/blob/v1.4.12/src/commands/single.ts)_
_See code: [src/commands/single.ts](https://github.com/oclif/oclif/blob/v1.5.0/src/commands/single.ts)_
<!-- commandsstop -->

# 🏭 Related Repositories
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oclif",
"description": "oclif: create your own CLI",
"version": "1.4.12",
"version": "1.5.0",
"author": "Jeff Dickey @jdxcode",
"bin": "./bin/run",
"bugs": "https://github.com/oclif/oclif/issues",
Expand Down

0 comments on commit dc93f10

Please sign in to comment.