omo-suites 1.5.2 → 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 +5 -0
- package/dist/cli/omocs.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ 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
|
+
|
|
8
13
|
## [1.5.2] - 2026-03-07
|
|
9
14
|
|
|
10
15
|
### Fixed
|
package/dist/cli/omocs.js
CHANGED
|
@@ -1963,7 +1963,8 @@ async function run(command, args = [], options) {
|
|
|
1963
1963
|
});
|
|
1964
1964
|
}
|
|
1965
1965
|
async function commandExists(command) {
|
|
1966
|
-
const
|
|
1966
|
+
const isWindows = process.platform === "win32";
|
|
1967
|
+
const result = await run(isWindows ? "where" : "which", [command]);
|
|
1967
1968
|
return result.success;
|
|
1968
1969
|
}
|
|
1969
1970
|
async function getCommandVersion(command, versionFlag = "--version") {
|
package/package.json
CHANGED