numux 1.23.0 → 1.23.1

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.
Files changed (2) hide show
  1. package/dist/numux.js +3 -2
  2. package/package.json +1 -1
package/dist/numux.js CHANGED
@@ -36,7 +36,7 @@ var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports,
36
36
  var require_package = __commonJS((exports, module) => {
37
37
  module.exports = {
38
38
  name: "numux",
39
- version: "1.23.0",
39
+ version: "1.23.1",
40
40
  description: "Terminal multiplexer with dependency orchestration",
41
41
  type: "module",
42
42
  license: "MIT",
@@ -3275,7 +3275,8 @@ class LogWriter {
3275
3275
  if (!path)
3276
3276
  return [];
3277
3277
  try {
3278
- const proc = Bun.spawn(["grep", "-inF", query, path], {
3278
+ const cmd = process.platform === "win32" ? ["findstr", "/i", "/n", query, path] : ["grep", "-inF", query, path];
3279
+ const proc = Bun.spawn(cmd, {
3279
3280
  stdout: "pipe",
3280
3281
  stderr: "ignore"
3281
3282
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "numux",
3
- "version": "1.23.0",
3
+ "version": "1.23.1",
4
4
  "description": "Terminal multiplexer with dependency orchestration",
5
5
  "type": "module",
6
6
  "license": "MIT",