Browse Source

🔖 2.5.0 [skip ci]

# [v2.5.0](https://github.com/beaussan/nbx/compare/v2.4.1...v2.5.0) (2020-03-29)

##  New Features

- [`2d8acf0`](https://github.com/beaussan/nbx/commit/2d8acf0)  add onlyLint flag to prettier

## ⬆️ Upgraded dependencies

- [`81a0aaa`](https://github.com/beaussan/nbx/commit/81a0aaa)  Upgrade jest monorepo
- [`31c624f`](https://github.com/beaussan/nbx/commit/31c624f)  Upgrade jest monorepo to v25.2.3
- [`53e4f80`](https://github.com/beaussan/nbx/commit/53e4f80)  Upgrade dependency @semantic-release/changelog to v5.0.1
pull/62/head v2.5.0
semantic-release-bot 6 years ago
parent
commit
782734f41a
  1. 12
      CHANGELOG.md
  2. 11
      README.md
  3. 2
      package.json

12
CHANGELOG.md

@ -1,3 +1,15 @@
# [v2.5.0](https://github.com/beaussan/nbx/compare/v2.4.1...v2.5.0) (2020-03-29)
## ✨ New Features
- [`2d8acf0`](https://github.com/beaussan/nbx/commit/2d8acf0) add onlyLint flag to prettier
## ⬆️ Upgraded dependencies
- [`81a0aaa`](https://github.com/beaussan/nbx/commit/81a0aaa) Upgrade jest monorepo
- [`31c624f`](https://github.com/beaussan/nbx/commit/31c624f) Upgrade jest monorepo to v25.2.3
- [`53e4f80`](https://github.com/beaussan/nbx/commit/53e4f80) Upgrade dependency @semantic-release/changelog to v5.0.1
# [v2.4.1](https://github.com/beaussan/nbx/compare/v2.4.0...v2.4.1) (2020-03-26)
## 🐛 Bug Fixes

11
README.md

@ -29,7 +29,7 @@ $ npm install -g @beaussan/nbx
$ nbx COMMAND
running command...
$ nbx (-v|--version|version)
@beaussan/nbx/2.4.0 linux-x64 node-v13.10.1
@beaussan/nbx/2.4.1 linux-x64 node-v13.12.0
$ nbx --help [COMMAND]
USAGE
$ nbx COMMAND
@ -69,7 +69,7 @@ EXAMPLES
$ nbx add:dep chalk
```
_See code: [src/commands/add/dep.ts](https://github.com/beaussan/nbx/blob/v2.4.0/src/commands/add/dep.ts)_
_See code: [src/commands/add/dep.ts](https://github.com/beaussan/nbx/blob/v2.4.1/src/commands/add/dep.ts)_
## `nbx add:prettier`
@ -81,11 +81,12 @@ USAGE
OPTIONS
-h, --help show CLI help
-l, --onlyLint only install for linters
-v, --verbose Verbose output
--[no-]spinner Enable spinner in cli output, true by default
```
_See code: [src/commands/add/prettier.ts](https://github.com/beaussan/nbx/blob/v2.4.0/src/commands/add/prettier.ts)_
_See code: [src/commands/add/prettier.ts](https://github.com/beaussan/nbx/blob/v2.4.1/src/commands/add/prettier.ts)_
## `nbx add:tailwind`
@ -101,7 +102,7 @@ OPTIONS
--[no-]spinner Enable spinner in cli output, true by default
```
_See code: [src/commands/add/tailwind.ts](https://github.com/beaussan/nbx/blob/v2.4.0/src/commands/add/tailwind.ts)_
_See code: [src/commands/add/tailwind.ts](https://github.com/beaussan/nbx/blob/v2.4.1/src/commands/add/tailwind.ts)_
## `nbx help [COMMAND]`
@ -147,7 +148,7 @@ EXAMPLE
$ nbx wall -r "cat" -o "wall.jpg" -fg
```
_See code: [src/commands/wall/index.ts](https://github.com/beaussan/nbx/blob/v2.4.0/src/commands/wall/index.ts)_
_See code: [src/commands/wall/index.ts](https://github.com/beaussan/nbx/blob/v2.4.1/src/commands/wall/index.ts)_
<!-- commandsstop -->
## Contributors ✨

2
package.json

@ -1,7 +1,7 @@
{
"name": "@beaussan/nbx",
"description": "My own personal cli",
"version": "2.4.1",
"version": "2.5.0",
"author": "Nicolas Beaussart @beaussan",
"bin": {
"nbx": "./bin/run"

Loading…
Cancel
Save