@carlesandres/house 0.5.0 → 0.5.1

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/CHANGELOG.md CHANGED
@@ -6,6 +6,13 @@ The publish workflow (`.github/workflows/publish.yml`) runs on the `release: pub
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.5.1] — 2026-07-25
10
+
11
+ ### Fixed
12
+
13
+ - Platform npm packages now preserve an executable `bin/house` after passing through GitHub Actions artifacts.
14
+
15
+
9
16
  ## [0.5.0] — 2026-07-23
10
17
 
11
18
  ### Added
@@ -361,7 +368,8 @@ The v1 MVP, published as `@carlesandres/openmdr` on npm.
361
368
 
362
369
  Search, stdin, URL fetching, cross-file link following, `$EDITOR` hand-off, syntax highlighting, persistent config, OS-appearance auto-detect, single-binary distribution (issue [#2](https://github.com/carlesandres/openmdr/issues/2)), Homebrew tap. All tracked.
363
370
 
364
- [Unreleased]: https://github.com/carlesandres/house/compare/v0.5.0...HEAD
371
+ [Unreleased]: https://github.com/carlesandres/house/compare/v0.5.1...HEAD
372
+ [0.5.1]: https://github.com/carlesandres/house/compare/v0.5.0...v0.5.1
365
373
  [0.5.0]: https://github.com/carlesandres/house/compare/v0.4.14...v0.5.0
366
374
  [0.4.14]: https://github.com/carlesandres/house/compare/v0.4.13...v0.4.14
367
375
  [0.4.13]: https://github.com/carlesandres/house/compare/v0.4.12...v0.4.13
package/dist/index.js CHANGED
@@ -13,7 +13,7 @@ import { useEffect as useEffect4, useRef as useRef3, useState as useState5 } fro
13
13
  // package.json
14
14
  var package_default = {
15
15
  name: "@carlesandres/house",
16
- version: "0.5.0",
16
+ version: "0.5.1",
17
17
  description: "TUI-first markdown reader on opentui",
18
18
  type: "module",
19
19
  license: "MIT",
@@ -61,6 +61,7 @@ var package_default = {
61
61
  test: "bun test",
62
62
  "test:pty": "HOUSE_PTY=1 bun test test/pty/",
63
63
  "version:set": "bun run dev/set-version.ts",
64
+ release: "bun run dev/release.ts",
64
65
  "build:cli": "bun run dev/build-cli.ts",
65
66
  "build:standalone": "bun run dev/build-standalone.ts",
66
67
  "build:npm-packages": "bun run dev/build-npm-packages.ts",
@@ -70,10 +71,10 @@ var package_default = {
70
71
  prepare: "git config core.hooksPath .githooks 2>/dev/null || true"
71
72
  },
72
73
  optionalDependencies: {
73
- "@carlesandres/house-darwin-arm64": "0.5.0",
74
- "@carlesandres/house-darwin-x64": "0.5.0",
75
- "@carlesandres/house-linux-arm64": "0.5.0",
76
- "@carlesandres/house-linux-x64": "0.5.0"
74
+ "@carlesandres/house-darwin-arm64": "0.5.1",
75
+ "@carlesandres/house-darwin-x64": "0.5.1",
76
+ "@carlesandres/house-linux-arm64": "0.5.1",
77
+ "@carlesandres/house-linux-x64": "0.5.1"
77
78
  },
78
79
  dependencies: {
79
80
  "@effect/atom-react": "4.0.0-beta.60",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlesandres/house",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "TUI-first markdown reader on opentui",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -48,6 +48,7 @@
48
48
  "test": "bun test",
49
49
  "test:pty": "HOUSE_PTY=1 bun test test/pty/",
50
50
  "version:set": "bun run dev/set-version.ts",
51
+ "release": "bun run dev/release.ts",
51
52
  "build:cli": "bun run dev/build-cli.ts",
52
53
  "build:standalone": "bun run dev/build-standalone.ts",
53
54
  "build:npm-packages": "bun run dev/build-npm-packages.ts",
@@ -57,10 +58,10 @@
57
58
  "prepare": "git config core.hooksPath .githooks 2>/dev/null || true"
58
59
  },
59
60
  "optionalDependencies": {
60
- "@carlesandres/house-darwin-arm64": "0.5.0",
61
- "@carlesandres/house-darwin-x64": "0.5.0",
62
- "@carlesandres/house-linux-arm64": "0.5.0",
63
- "@carlesandres/house-linux-x64": "0.5.0"
61
+ "@carlesandres/house-darwin-arm64": "0.5.1",
62
+ "@carlesandres/house-darwin-x64": "0.5.1",
63
+ "@carlesandres/house-linux-arm64": "0.5.1",
64
+ "@carlesandres/house-linux-x64": "0.5.1"
64
65
  },
65
66
  "dependencies": {
66
67
  "@effect/atom-react": "4.0.0-beta.60",