donder-release-cli 1.1.1 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,8 +1,12 @@
1
- # donder-release
1
+ <p align="center">
2
+ <img src="https://user-images.githubusercontent.com/12548890/204842249-c59bf410-2ab2-41c7-8f1a-bbb7aa1f5275.png" style="border-radius: 8px;">
3
+ <h1 align="center">donder-release</h1>
4
+ <h3 align="center">Quickly create releases on Github from the command line or CI using conventional commits.</h3>
5
+ </p>
2
6
 
3
- Quickly create releases on Github from the command line or CI using conventional commits.
7
+ <br />
4
8
 
5
- ## Usage
9
+ ## Installation
6
10
 
7
11
  #### With Cargo
8
12
 
@@ -10,18 +14,18 @@ Quickly create releases on Github from the command line or CI using conventional
10
14
  cargo install donder-release
11
15
  ```
12
16
 
13
- See CLI options:
17
+ #### With Npm
14
18
 
15
19
  ```bash
16
- donder-release --help
20
+ npm install -g donder-release-cli
17
21
  ```
18
22
 
19
- #### With Npm
23
+ ## Usage
20
24
 
21
25
  See CLI options:
22
26
 
23
27
  ```bash
24
- npx donder-release@latest --help
28
+ donder-release --help
25
29
  ```
26
30
 
27
31
  #### TODO
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "donder-release-cli",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "Quickly create releases on Github from the command line or CI using conventional commits.",
5
5
  "author": "Bruno Morgado <bruno@cloudoki.com>",
6
6
  "license": "MIT",
7
7
  "main": "npm/start.js",
8
8
  "bin": {
9
- "donder-release": "npm/start.js"
9
+ "donder-release-cli": "npm/start.js"
10
10
  },
11
11
  "files": [
12
12
  "npm/**/*",