@carlesandres/house 0.4.4 → 0.4.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/CHANGELOG.md +16 -1
- package/README.md +8 -1
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,20 @@ The publish workflow (`.github/workflows/publish.yml`) runs on the `release: pub
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.4.5] — 2026-05-24
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- npm install/upgrade runtime baseline is now explicit: Node `>=22.22.2` is required when installing `@carlesandres/house` via npm, matching transitive engine requirements.
|
|
14
|
+
|
|
15
|
+
### Docs
|
|
16
|
+
|
|
17
|
+
- README now calls out the Node `>=22.22.2` requirement for npm-based install/upgrade.
|
|
18
|
+
|
|
19
|
+
### Tests
|
|
20
|
+
|
|
21
|
+
- CI now includes an npm global-install smoke matrix on Node `22.22.2` and Node `24` with `engine-strict=true`, catching runtime-floor regressions before release.
|
|
22
|
+
|
|
9
23
|
## [0.4.4] — 2026-05-24
|
|
10
24
|
|
|
11
25
|
### Added
|
|
@@ -189,7 +203,8 @@ The v1 MVP, published as `@carlesandres/openmdr` on npm.
|
|
|
189
203
|
|
|
190
204
|
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.
|
|
191
205
|
|
|
192
|
-
[Unreleased]: https://github.com/carlesandres/house/compare/v0.4.
|
|
206
|
+
[Unreleased]: https://github.com/carlesandres/house/compare/v0.4.5...HEAD
|
|
207
|
+
[0.4.5]: https://github.com/carlesandres/house/compare/v0.4.4...v0.4.5
|
|
193
208
|
[0.4.4]: https://github.com/carlesandres/house/compare/v0.4.3...v0.4.4
|
|
194
209
|
[0.4.3]: https://github.com/carlesandres/house/compare/v0.4.2...v0.4.3
|
|
195
210
|
[0.4.2]: https://github.com/carlesandres/house/compare/v0.4.1...v0.4.2
|
package/README.md
CHANGED
|
@@ -14,7 +14,14 @@ A terminal markdown reader and navigator — themable and configurable, with a k
|
|
|
14
14
|
- **Open in browser**
|
|
15
15
|
- **Open in `$EDITOR`**
|
|
16
16
|
|
|
17
|
-
Requires [Bun](https://bun.sh) on `PATH`.
|
|
17
|
+
Requires [Bun](https://bun.sh) on `PATH`.
|
|
18
|
+
|
|
19
|
+
## Runtime requirements
|
|
20
|
+
|
|
21
|
+
- Bun: required to run `house`.
|
|
22
|
+
- npm install/upgrade path: Node `>=22.22.2` (Node 24 LTS recommended).
|
|
23
|
+
|
|
24
|
+
Supported on macOS and Linux; Windows is unsupported and unvalidated (see [#129](https://github.com/carlesandres/house/issues/129)).
|
|
18
25
|
|
|
19
26
|
## Install
|
|
20
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carlesandres/house",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"description": "TUI-first markdown reader on opentui",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -12,6 +12,9 @@
|
|
|
12
12
|
"url": "https://github.com/carlesandres/house/issues"
|
|
13
13
|
},
|
|
14
14
|
"homepage": "https://github.com/carlesandres/house#readme",
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=22.22.2"
|
|
17
|
+
},
|
|
15
18
|
"keywords": [
|
|
16
19
|
"markdown",
|
|
17
20
|
"reader",
|