Skip to content

Commit

Permalink
chore(release): 2.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [2.0.0](v1.0.0...v2.0.0) (2019-11-11)

### Features

* **generate, init:** create new release ([#39](#39)) ([c4d4f54](c4d4f54)), closes [#6](#6) [#13](#13) [#14](#14) [#15](#15) [#16](#16) [#11](#11) [#22](#22) [#8](#8) [#23](#23) [#26](#26) [#24](#24) [#35](#35) [#30](#30) [#36](#36) [#33](#33) [#37](#37) [#6](#6) [#15](#15) [#11](#11) [#36](#36) [#33](#33) [#37](#37)

### BREAKING CHANGES

* **generate, init:** modify how generate command works
  • Loading branch information
semantic-release-bot committed Nov 11, 2019
1 parent c4d4f54 commit ed08dcf
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 9 deletions.
37 changes: 29 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ A CLI and scripts used at Echobind
[![License](https://img.shields.io/npm/l/eb-scripts.svg)](https://github.com/echobind/eb-scripts/blob/master/package.json)

<!-- toc -->
- [eb-scripts](#eb-scripts)
- [Usage](#usage)
- [Commands](#commands)
- [Contributing](#contributing)
* [eb-scripts](#eb-scripts)
* [Usage](#usage)
* [Commands](#commands)
* [Contributing](#contributing)
<!-- tocstop -->

# Usage
Expand All @@ -24,7 +24,7 @@ $ npm install -g eb-scripts
$ eb-scripts COMMAND
running command...
$ eb-scripts (-v|--version|version)
eb-scripts/1.0.0 darwin-x64 node-v10.16.0
eb-scripts/2.0.0 linux-x64 node-v13.1.0
$ eb-scripts --help [COMMAND]
USAGE
$ eb-scripts COMMAND
Expand All @@ -35,10 +35,11 @@ USAGE
# Commands

<!-- commands -->
* [`eb-scripts generate [COMPONENT NAME]`](#eb-scripts-generate-component-name)
* [`eb-scripts generate TEMPLATENAME`](#eb-scripts-generate-templatename)
* [`eb-scripts help [COMMAND]`](#eb-scripts-help-command)
* [`eb-scripts init PROJECT`](#eb-scripts-init-project)

## `eb-scripts generate [COMPONENT NAME]`
## `eb-scripts generate TEMPLATENAME`

generates new files

Expand All @@ -61,7 +62,7 @@ EXAMPLE
added: src/MyNewComponent.js
```

_See code: [src/commands/generate.ts](https://github.com/echobind/eb-scripts/blob/v1.0.0/src/commands/generate.ts)_
_See code: [src/commands/generate.ts](https://github.com/echobind/eb-scripts/blob/v2.0.0/src/commands/generate.ts)_

## `eb-scripts help [COMMAND]`

Expand All @@ -80,6 +81,26 @@ OPTIONS

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

## `eb-scripts init PROJECT`

initializes project by installing `eb-scripts` and adding scripts to `package.json`

```
USAGE
$ eb-scripts init PROJECT
ARGUMENTS
PROJECT (react|react-typescript|react-native-typescript) The language or framework of the project.
Valid options: react,react-typescript,react-native-typescript
OPTIONS
-h, --help show CLI help
EXAMPLE
$ npx eb-scripts init react
```

_See code: [src/commands/init.ts](https://github.com/echobind/eb-scripts/blob/v2.0.0/src/commands/init.ts)_
<!-- commandsstop -->

# Contributing
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": "eb-scripts",
"description": "A CLI and scripts used at Echobind",
"version": "1.0.0",
"version": "2.0.0",
"author": "Joe Previte @jsjoeio",
"bin": {
"eb-scripts": "./bin/run"
Expand Down

0 comments on commit ed08dcf

Please sign in to comment.