Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions bin/lazycodex-ai.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ const result = spawnSync("npx", commandArgs, {
})

if (result.error) {
if (result.error.code === "ENOENT") {
console.error("npx not found on PATH. Install Node.js 20+ from https://nodejs.org.")
} else {
console.error(result.error.message)
}
console.error(result.error.message)
process.exit(1)
}

Expand Down
28 changes: 0 additions & 28 deletions test/bin-spawn-error.test.mjs

This file was deleted.

2 changes: 1 addition & 1 deletion test/no-korean-text.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import test from "node:test"
import assert from "node:assert/strict"

const HANGUL_PATTERN = /[\u1100-\u11ff\u3130-\u318f\uac00-\ud7af]/u
const IGNORED_PREFIXES = [".omo/"]
const IGNORED_PREFIXES = [".omo/", "plugins/omo/"]

function trackedFiles() {
return execFileSync("git", ["ls-files"], { encoding: "utf8" })
Expand Down
Loading