poe-code 3.0.160 → 3.0.162

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/dist/index.js CHANGED
@@ -13590,7 +13590,7 @@ var init_spawn3 = __esm({
13590
13590
  spawn4.pretty = async function pretty(service, promptOrOptions, maybeOptions) {
13591
13591
  const { events, result } = spawn4(service, promptOrOptions, maybeOptions);
13592
13592
  await renderAcpStream(events);
13593
- return result;
13593
+ return await result;
13594
13594
  };
13595
13595
  }
13596
13596
  });
@@ -16928,7 +16928,7 @@ async function runRalph2(options) {
16928
16928
  ...input.signal ? { signal: input.signal } : {}
16929
16929
  });
16930
16930
  await renderAcpStream(events);
16931
- return result;
16931
+ return await result;
16932
16932
  } catch (error2) {
16933
16933
  if (!isActivityTimeoutError(error2) || attempt === MAX_TIMEOUT_RETRIES2) {
16934
16934
  throw error2;
@@ -19063,7 +19063,7 @@ function projectWorkflowDir(cwd) {
19063
19063
  return path32.join(cwd, ".github", "workflows");
19064
19064
  }
19065
19065
  function projectGitHubWorkflowsDir(cwd) {
19066
- return path32.join(cwd, ".poe-code", "github-workflows");
19066
+ return projectWorkflowDir(cwd);
19067
19067
  }
19068
19068
  async function resolveBuiltInPromptsDir() {
19069
19069
  for (const candidate of builtInPromptsDirCandidates) {
@@ -33464,7 +33464,7 @@ var init_package = __esm({
33464
33464
  "package.json"() {
33465
33465
  package_default = {
33466
33466
  name: "poe-code",
33467
- version: "3.0.160",
33467
+ version: "3.0.162",
33468
33468
  description: "CLI tool to configure Poe API for developer workflows.",
33469
33469
  type: "module",
33470
33470
  main: "./dist/index.js",