@nwire/cli 0.13.1 → 0.13.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.
@@ -287,8 +287,9 @@ export function createStudioHostApi(opts) {
287
287
  const pathname = new URL(url, "http://x").pathname;
288
288
  if (!pathname.startsWith("/__nwire/"))
289
289
  return false;
290
- // ── manifest ───────────────────────────────────────────────────────────
291
- if (req.method === "GET" && pathname === "/__nwire/manifest.json") {
290
+ // ── manifest (accept the `.json` route and the bare alias) ─────────────
291
+ if (req.method === "GET" &&
292
+ (pathname === "/__nwire/manifest.json" || pathname === "/__nwire/manifest")) {
292
293
  handleManifest(req, res, cwd);
293
294
  return true;
294
295
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nwire/cli",
3
- "version": "0.13.1",
3
+ "version": "0.13.2",
4
4
  "description": "Nwire CLI — branded TUI. Dev, run, please, build, test, fmt, lint, check, ps, logs, cache, ls, studio. One surface for the whole framework.",
5
5
  "keywords": [
6
6
  "cli",
@@ -37,10 +37,10 @@
37
37
  "react": "^18.3.1",
38
38
  "sirv": "^3.0.1",
39
39
  "vite": "npm:rolldown-vite@latest",
40
- "@nwire/endpoint": "0.13.1",
41
- "@nwire/hooks": "0.13.1",
42
- "@nwire/mcp": "0.13.1",
43
- "@nwire/scan": "0.13.1"
40
+ "@nwire/hooks": "0.13.2",
41
+ "@nwire/endpoint": "0.13.2",
42
+ "@nwire/scan": "0.13.2",
43
+ "@nwire/mcp": "0.13.2"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/node": "^22.19.9",