omnish 2.1.3 → 2.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/CHANGELOG.md +22 -0
- package/README.md +6 -0
- package/dist/downloads/omnish-claude.tar.gz +0 -0
- package/dist/downloads/omnish-cursor.tar.gz +0 -0
- package/dist/index.js +241 -238
- package/package.json +4 -1
- package/scripts/check-native-modules.mjs +11 -3
- package/scripts/check-node-version.cjs +22 -0
- package/scripts/node-version.cjs +243 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.1.5] - 2026-07-11
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **`preinstall` on old Node:** version check scripts are now CommonJS (Node 10+ parseable) so hosts on distro Node 12 see actionable upgrade steps instead of `SyntaxError: Unexpected token '.'`.
|
|
15
|
+
- **Linux VPS help:** Debian/Ubuntu NodeSource 22.x upgrade path in install errors, `contrib/install-omnish.sh`, and runtime messages.
|
|
16
|
+
|
|
17
|
+
## [2.1.4] - 2026-07-11
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- **`preinstall` Node version guard** with OS-specific upgrade instructions when Node is below 22.13.
|
|
22
|
+
- **Runtime CLI check** — `omnish` exits early on unsupported Node with the same guidance.
|
|
23
|
+
- **`contrib/install-omnish.sh`** — bootstrap script that tries nvm/fnm, sets Node 22 default, then runs `npm install -g omnish`.
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
- **Native module postinstall errors** now explain Node ABI mismatches and how to reinstall/rebuild.
|
|
28
|
+
- **Docs** — README, quick-start, and troubleshooting cover Node 22.13+ requirement and guided install.
|
|
29
|
+
|
|
10
30
|
## [2.1.3] - 2026-07-11
|
|
11
31
|
|
|
12
32
|
### Added
|
|
@@ -51,6 +71,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
51
71
|
|
|
52
72
|
- Documentation and formatting updates across chat components and feature docs.
|
|
53
73
|
|
|
74
|
+
[2.1.5]: https://github.com/labKnowledge/omnish/compare/v2.1.4...v2.1.5
|
|
75
|
+
[2.1.4]: https://github.com/labKnowledge/omnish/compare/v2.1.3...v2.1.4
|
|
54
76
|
[2.1.3]: https://github.com/eligapris/omnish/compare/v2.1.2...v2.1.3
|
|
55
77
|
[2.1.2]: https://github.com/eligapris/omnish/compare/v2.1.1...v2.1.2
|
|
56
78
|
[2.1.1]: https://github.com/eligapris/omnish/compare/v2.1.0...v2.1.1
|
package/README.md
CHANGED
|
@@ -109,6 +109,12 @@ Names are alphanumeric plus `_`/`-`, max 32 characters; several names are reserv
|
|
|
109
109
|
|
|
110
110
|
## Install from npm
|
|
111
111
|
|
|
112
|
+
**Requires Node.js 22.13+** (`node -v`). If install fails on version, see [Quick start — Installation](docs/guides/quick-start.md#installation) or run:
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
curl -fsSL https://raw.githubusercontent.com/labKnowledge/omnish/main/contrib/install-omnish.sh | bash
|
|
116
|
+
```
|
|
117
|
+
|
|
112
118
|
```bash
|
|
113
119
|
npm install -g omnish
|
|
114
120
|
omnish link
|
|
Binary file
|
|
Binary file
|