bstack 1.1.4 → 1.1.5

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.
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # bstack
2
2
 
3
+ [![Open on npmx.dev](https://npmx.dev/api/registry/badge/version/bstack)](https://npmx.dev/package/bstack)
4
+
3
5
  Convert a series of commits in a local branch into a native GitHub stack of pull requests.
4
6
 
5
7
  ## Install
@@ -21,10 +23,11 @@ Write and edit commits locally. `bstack` handles the GitHub ops for you:
21
23
 
22
24
  You
23
25
 
24
- - Do not push your local feature branch.
26
+ - Do not push your local feature branches.
25
27
  - Do not open pull requests manually.
26
- - Run `bstack` when your commits are ready. It pushes dedicated remote branches
27
- and creates one pull request for each commit.
28
+ - Run `bstack` when your commits are ready.
29
+
30
+ **bstack** pushes dedicated remote branches and creates one pull request for each commit.
28
31
 
29
32
  ### Start a stack
30
33
 
package/dist/bstack.mjs CHANGED
@@ -6,7 +6,7 @@ import * as v from "valibot";
6
6
  import { mkdirSync, readFileSync, renameSync, writeFileSync } from "node:fs";
7
7
  import { dirname } from "node:path";
8
8
  //#region package.json
9
- var version = "1.1.4";
9
+ var version = "1.1.5";
10
10
  //#endregion
11
11
  //#region src/command.ts
12
12
  var CommandError = class extends Error {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bstack",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Create native GitHub stacked pull requests from a linear series of commits",
5
5
  "license": "MIT",
6
6
  "repository": {