gflows 0.1.9 → 0.1.10

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 (3) hide show
  1. package/README.md +5 -0
  2. package/package.json +1 -1
  3. package/src/cli.ts +2 -0
package/README.md CHANGED
@@ -77,6 +77,11 @@ Available on:
77
77
  - [npm: gflows](https://www.npmjs.com/package/gflows)
78
78
  - [JSR: @alialnaghmoush/gflows](https://jsr.io/@alialnaghmoush/gflows)
79
79
 
80
+ If installed as a local dev dependency, run via your package runner:
81
+
82
+ - Bun: `bunx gflows ...` (or `bun gflows ...` when available in your Bun setup)
83
+ - npm: `npx gflows ...`
84
+
80
85
  **Global install (optional):**
81
86
 
82
87
  **npm**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gflows",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "A lightweight CLI for consistent Git branching workflows (main + dev, feature/bugfix/chore/release/hotfix).",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/cli.ts CHANGED
@@ -1,3 +1,5 @@
1
+ #!/usr/bin/env bun
2
+
1
3
  /**
2
4
  * CLI entrypoint for gflows. Parses argv, resolves -C/path, dispatches to commands,
3
5
  * and ensures exit codes and unhandled rejections are handled.