@openai-lite/codex-feishu 0.1.2 → 0.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openai-lite/codex-feishu",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Feishu bridge for Codex with dual-end synchronized conversations.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -183,8 +183,8 @@ export async function restartDaemonDetached() {
183
183
  await removePidFile();
184
184
 
185
185
  const entry = process.argv[1];
186
- const stableCliEntry = fileURLToPath(new URL("../cli.js", import.meta.url));
187
- const candidateEntries = [...new Set([stableCliEntry, entry].filter(Boolean))];
186
+ const stableBinEntry = fileURLToPath(new URL("../../bin/codex-feishu.js", import.meta.url));
187
+ const candidateEntries = [...new Set([stableBinEntry, entry].filter(Boolean))];
188
188
  const attempts = [];
189
189
  if (process.platform === "win32") {
190
190
  for (const cliEntry of candidateEntries) {