@dosu/cli 0.3.7 → 0.3.8

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/bin/dosu.js +3 -1
  2. package/package.json +1 -1
package/bin/dosu.js CHANGED
@@ -4775,6 +4775,7 @@ async function runSetup(opts = {}) {
4775
4775
  const d3 = await stepResolveDeployment(apiClient, opts.deploymentID);
4776
4776
  if (!d3)
4777
4777
  return;
4778
+ cfg.mode = undefined;
4778
4779
  cfg.deployment_id = d3.deployment_id;
4779
4780
  cfg.deployment_name = d3.name;
4780
4781
  } else if (cfg.mode === MODE_OSS) {
@@ -4790,6 +4791,7 @@ async function runSetup(opts = {}) {
4790
4791
  const d3 = await stepSelectDeployment(apiClient, org);
4791
4792
  if (!d3)
4792
4793
  return;
4794
+ cfg.mode = undefined;
4793
4795
  cfg.deployment_id = d3.deployment_id;
4794
4796
  cfg.deployment_name = d3.name;
4795
4797
  }
@@ -5106,7 +5108,7 @@ init_config();
5106
5108
  init_providers();
5107
5109
 
5108
5110
  // src/version/version.ts
5109
- var VERSION = "0.3.7";
5111
+ var VERSION = "0.3.8";
5110
5112
  function getVersionString() {
5111
5113
  return `v${VERSION}`;
5112
5114
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dosu/cli",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "type": "module",
5
5
  "description": "Dosu CLI - Manage MCP servers for AI tools",
6
6
  "license": "MIT",