poe-code 3.0.234 → 3.0.235

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
@@ -55104,7 +55104,8 @@ function resolveMCPVersion(version) {
55104
55104
  }
55105
55105
  async function runMCP(roots, options) {
55106
55106
  enableSourceMaps();
55107
- const root = mergeApprovalsGroup(normalizeRoots(roots));
55107
+ const normalizedRoot = normalizeRoots(roots);
55108
+ const root = options.approvals === false ? normalizedRoot : mergeApprovalsGroup(normalizedRoot);
55108
55109
  await resolveMcpProxies(root, { projectRoot: options.projectRoot });
55109
55110
  const server = createResolvedMCPServer(root, options);
55110
55111
  await server.listen();
@@ -81100,7 +81101,8 @@ function configureCommanderSuggestionOutput(command) {
81100
81101
  }
81101
81102
  async function runCLI(roots, options = {}) {
81102
81103
  enableSourceMaps();
81103
- const root = mergeApprovalsGroup(normalizeRoots2(roots, process.argv));
81104
+ const normalizedRoot = normalizeRoots2(roots, process.argv);
81105
+ const root = options.approvals === false ? normalizedRoot : mergeApprovalsGroup(normalizedRoot);
81104
81106
  await resolveMcpProxies(root, { projectRoot: options.projectRoot });
81105
81107
  const casing = options.casing ?? "kebab";
81106
81108
  const services = options.services ?? {};
@@ -122924,7 +122926,7 @@ var init_package2 = __esm({
122924
122926
  "package.json"() {
122925
122927
  package_default2 = {
122926
122928
  name: "poe-code",
122927
- version: "3.0.234",
122929
+ version: "3.0.235",
122928
122930
  description: "CLI tool to configure Poe API for developer workflows.",
122929
122931
  type: "module",
122930
122932
  main: "./dist/index.js",