@nexusbloom/cli 0.1.1 → 0.1.2

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/package.json +2 -2
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@nexusbloom/cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "NexusBloom CLI — run tools and workflows from your terminal",
5
5
  "type": "module",
6
6
  "bin": {
7
- "nxb": "./src/index.js"
7
+ "nxb": "src/index.js"
8
8
  },
9
9
  "files": [
10
10
  "src/",
package/src/index.js CHANGED
@@ -29,7 +29,7 @@ import { fileURLToPath } from "url";
29
29
  const require = createRequire(import.meta.url);
30
30
  const { version } = require("../package.json");
31
31
 
32
- const API_BASE = process.env.NEXUSBLOOM_API_URL || "https://nexusbloom.dev";
32
+ const API_BASE = process.env.NEXUSBLOOM_API_URL || "https://www.nexusbloom.dev";
33
33
  const config = new Conf({ projectName: "nexusbloom" });
34
34
 
35
35
  // ─── Cache directory for local tool execution ────────────────────────────────