@apicircle/cli 1.1.0 → 1.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/dist/bin/cli.cjs CHANGED
@@ -37,7 +37,7 @@ var init_package = __esm({
37
37
  "package.json"() {
38
38
  package_default = {
39
39
  name: "@apicircle/cli",
40
- version: "1.1.0",
40
+ version: "1.1.3",
41
41
  private: false,
42
42
  type: "module",
43
43
  description: "Command-line interface for API Circle Studio. Run mock servers, drive the MCP server, and import OpenAPI / Postman / Insomnia collections from any terminal.",
@@ -291,9 +291,7 @@ var init_loadWorkspace = __esm({
291
291
 
292
292
  // src/util/resolveWorkspace.ts
293
293
  function defaultWorkspacesRoot() {
294
- const override = process.env.APICIRCLE_WORKSPACES_ROOT;
295
- if (override && override.length > 0) return path3.resolve(override);
296
- return (0, import_registry.defaultApicircleRoot)();
294
+ return (0, import_registry.resolveApicircleRoot)();
297
295
  }
298
296
  async function resolveWorkspace(opts = {}) {
299
297
  const root = opts.workspacesRoot ?? defaultWorkspacesRoot();