@bshsolutions/git 0.0.1-alpha → 0.0.3-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 +13 -31
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,41 +1,23 @@
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) |
12
-
13
- ---
14
-
15
- ## Features
3
+ A friendly CLI for common Git workflows.
16
4
 
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.
5
+ ## Usage
20
6
 
21
- ---
7
+ ```sh
8
+ npx @bshsolutions/git --help
9
+ ```
22
10
 
23
11
  ## Documentation
24
12
 
25
- docs/
26
- - `├──` [**Documentation home**](docs/README.md)
27
- - `├──` [**Setup**](docs/setup.md)
28
- - `├──` [**Commands**](docs/commands.md)
29
- - `└──` [**Commit**](docs/commit.md)
13
+ Full guides live in the repo: [docs](docs/README.md)
30
14
 
31
- ---
15
+ ## Links
32
16
 
33
- ## Quick start
17
+ - [npm](https://www.npmjs.com/package/@bshsolutions/git)
18
+ - [Repository](https://github.com/bsh-devsolutions/git.bsh)
19
+ - [Issues](https://github.com/bsh-devsolutions/git.bsh/issues)
34
20
 
35
- ```sh
36
- npm install
37
- npm run build
38
- npx @bshsolutions/git hello --name you
39
- ```
21
+ ## License
40
22
 
41
- For local development, linking into other repos, and hook setup, start with [**Setup**](docs/setup.md).
23
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/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.3-alpha",
4
4
  "description": "A friendly CLI for common Git workflows",
5
5
  "type": "module",
6
6
  "bin": {