@bshsolutions/git 0.0.1-alpha → 0.0.2-alpha

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 +14 -30
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,41 +1,25 @@
1
- # BSH Git CLI
1
+ # @bshsolutions/git
2
2
 
3
- [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
4
- [![GitHub](https://img.shields.io/badge/repository-git.bsh-181717?logo=github)](https://github.com/bsh-devsolutions/git.bsh)
5
-
6
- A small **Node.js CLI** for everyday Git workflows: quick **`hello`** checks and a **`commit`** command that can install a **`commit-msg`** hook so messages stay consistent.
7
-
8
- | | |
9
- | --- | --- |
10
- | **Binary** | `git` |
11
- | **Package** | [`@bshsolutions/git`](https://www.npmjs.com/package/@bshsolutions/git) |
3
+ > A friendly CLI for common Git workflows.
12
4
 
13
- ---
14
-
15
- ## Features
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
16
6
 
17
- - **Smoke-test friendly** — `hello` verifies the CLI runs where you need it.
18
- - **Structured commits** — validate messages and optionally enforce them via a Git hook.
19
- - **`npx`-first** — run without a global install, or `npm link` for local development.
7
+ ## Usage
20
8
 
21
- ---
9
+ ```sh
10
+ npx @bshsolutions/git --help
11
+ ```
22
12
 
23
13
  ## Documentation
24
14
 
25
- docs/
26
- - `├──` [**Documentation home**](docs/README.md)
27
- - `├──` [**Setup**](docs/setup.md)
28
- - `├──` [**Commands**](docs/commands.md)
29
- - `└──` [**Commit**](docs/commit.md)
15
+ Full guides live in the repo: [docs](docs/README.md) (setup, commands, commit flow).
30
16
 
31
- ---
17
+ ## Links
32
18
 
33
- ## Quick start
19
+ - [npm](https://www.npmjs.com/package/@bshsolutions/git)
20
+ - [Repository](https://github.com/bsh-devsolutions/git.bsh)
21
+ - [Issues](https://github.com/bsh-devsolutions/git.bsh/issues)
34
22
 
35
- ```sh
36
- npm install
37
- npm run build
38
- npx @bshsolutions/git hello --name you
39
- ```
23
+ ## License
40
24
 
41
- For local development, linking into other repos, and hook setup, start with [**Setup**](docs/setup.md).
25
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bshsolutions/git",
3
- "version": "0.0.1-alpha",
3
+ "version": "0.0.2-alpha",
4
4
  "description": "A friendly CLI for common Git workflows",
5
5
  "type": "module",
6
6
  "bin": {