omo-suites 1.5.1 → 1.5.3
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 +13 -0
- package/dist/cli/omocs.js +886 -94
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ All notable changes to OMO Suites will be documented in this file.
|
|
|
5
5
|
Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
6
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.5.3] - 2026-03-07
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- `omocs doctor` now detects installed tools on Windows (was using `which` instead of `where`)
|
|
12
|
+
|
|
13
|
+
## [1.5.2] - 2026-03-07
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- **Node.js compatibility** — replaced all Bun-specific APIs (`Bun.file()`, `Bun.write()`, `Bun.spawn()`) with Node.js `fs` and `child_process` equivalents
|
|
17
|
+
- `Bun is not defined` errors when running via `npm i -g` on systems without Bun
|
|
18
|
+
- `bun:sqlite` replaced with `better-sqlite3` for cross-runtime SQLite support
|
|
19
|
+
- All 10 source files updated: config.ts, store.ts, opencode.ts, profile.ts, stats.ts, agents.ts, detect.ts, shell.ts, tui/views/stats.ts, tui/commands.ts
|
|
20
|
+
|
|
8
21
|
## [1.5.1] - 2026-03-07
|
|
9
22
|
|
|
10
23
|
### Fixed
|