bstack 1.1.2 → 1.1.4

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
@@ -94,3 +94,4 @@ command before it runs.
94
94
 
95
95
  - [ezyang/ghstack](https://github.com/ezyang/ghstack)
96
96
  - [github/gh-stack](https://github.com/github/gh-stack)
97
+ - [stacking.dev](https://www.stacking.dev/)
@@ -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.2";
9
+ var version = "1.1.4";
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.2",
3
+ "version": "1.1.4",
4
4
  "description": "Create native GitHub stacked pull requests from a linear series of commits",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -8,10 +8,10 @@
8
8
  "url": "git+https://github.com/wsehl/bstack.git"
9
9
  },
10
10
  "bin": {
11
- "bstack": "./dist/bstack.js"
11
+ "bstack": "./dist/bstack.mjs"
12
12
  },
13
13
  "files": [
14
- "dist/bstack.js"
14
+ "dist/bstack.mjs"
15
15
  ],
16
16
  "type": "module",
17
17
  "publishConfig": {
@@ -24,7 +24,7 @@
24
24
  "lint": "oxlint .",
25
25
  "prepack": "pnpm run build",
26
26
  "prepublishOnly": "pnpm run type-check && pnpm test",
27
- "start": "pnpm run build && node dist/bstack.js",
27
+ "start": "pnpm run build && node dist/bstack.mjs",
28
28
  "test": "vitest run",
29
29
  "type-check": "tsc --noEmit"
30
30
  },