@follenfang/wowdoc 0.0.2 → 0.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@follenfang/wowdoc",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Auditable WoW UI source intelligence CLI for coding agents",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -29,7 +29,7 @@ for (const name of ["wowdoc", "wowdata"]) {
29
29
  execFileSync("go", ["build", "-trimpath", "-ldflags", `-s -w -X github.com/follenfang/wowdoc/internal/app.Version=${pkg.version}`, "-o", target, `./cmd/${name}`], { cwd: root, stdio: "inherit" });
30
30
  } else {
31
31
  const asset = `${name}-${platform}${suffix}`;
32
- const url = `https://github.com/follenfang/wowdoc/releases/download/v${pkg.version}/${asset}`;
32
+ const url = `https://github.com/Follen/wowdoc/releases/download/v${pkg.version}/${asset}`;
33
33
  const response = await fetch(url, { redirect: "follow" });
34
34
  if (!response.ok) throw new Error(`binary_download_failed: ${response.status} ${url}`);
35
35
  writeFileSync(target, Buffer.from(await response.arrayBuffer()));