@carlesandres/house 0.4.10 → 0.4.11
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 +8 -1
- package/README.md +6 -6
- package/package.json +1 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ The publish workflow (`.github/workflows/publish.yml`) runs on the `release: pub
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.4.11] — 2026-06-14
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Removed the package-level Node engine requirement so npm installs do not warn about `house` itself; Bun remains the supported runtime and installer path until standalone binaries land.
|
|
14
|
+
|
|
9
15
|
## [0.4.10] — 2026-06-14
|
|
10
16
|
|
|
11
17
|
### Added
|
|
@@ -305,7 +311,8 @@ The v1 MVP, published as `@carlesandres/openmdr` on npm.
|
|
|
305
311
|
|
|
306
312
|
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.
|
|
307
313
|
|
|
308
|
-
[Unreleased]: https://github.com/carlesandres/house/compare/v0.4.
|
|
314
|
+
[Unreleased]: https://github.com/carlesandres/house/compare/v0.4.11...HEAD
|
|
315
|
+
[0.4.11]: https://github.com/carlesandres/house/compare/v0.4.10...v0.4.11
|
|
309
316
|
[0.4.10]: https://github.com/carlesandres/house/compare/v0.4.9...v0.4.10
|
|
310
317
|
[0.4.9]: https://github.com/carlesandres/house/compare/v0.4.8...v0.4.9
|
|
311
318
|
[0.4.8]: https://github.com/carlesandres/house/compare/v0.4.7...v0.4.8
|
package/README.md
CHANGED
|
@@ -18,25 +18,25 @@ Requires [Bun](https://bun.sh) on `PATH`.
|
|
|
18
18
|
|
|
19
19
|
## Runtime requirements
|
|
20
20
|
|
|
21
|
-
- Bun: required to run `house
|
|
22
|
-
- npm install
|
|
21
|
+
- Bun: required to install and run `house` today.
|
|
22
|
+
- npm can install the package, but npm evaluates Node engine metadata from transitive dependencies during install. Use `bun add -g` for the supported no-Node install path.
|
|
23
23
|
|
|
24
24
|
Supported on macOS and Linux; Windows is unsupported and unvalidated (see [#129](https://github.com/carlesandres/house/issues/129)).
|
|
25
25
|
|
|
26
26
|
## Install
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
npm install -g @carlesandres/house
|
|
30
|
-
# or
|
|
31
29
|
bun add -g @carlesandres/house
|
|
30
|
+
# npm also works when your local Node/npm combination accepts the dependency graph:
|
|
31
|
+
npm install -g @carlesandres/house
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
## Upgrade
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
|
-
npm i -g @carlesandres/house
|
|
38
|
-
# or
|
|
39
37
|
bun add -g @carlesandres/house
|
|
38
|
+
# npm also works when your local Node/npm combination accepts the dependency graph:
|
|
39
|
+
npm i -g @carlesandres/house
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
## Usage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carlesandres/house",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.11",
|
|
4
4
|
"description": "TUI-first markdown reader on opentui",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -12,9 +12,6 @@
|
|
|
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
|
-
},
|
|
18
15
|
"keywords": [
|
|
19
16
|
"markdown",
|
|
20
17
|
"reader",
|