vibe-cokit 1.11.1 → 1.11.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/dist/cli.js +1 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -2625,7 +2625,7 @@ async function upgradeCli() {
2625
2625
  try {
2626
2626
  await exec2("rm", ["-rf", join2(homedir2(), ".bun", "install", "cache")]);
2627
2627
  } catch {}
2628
- await exec2("bun", ["install", "-g", `vibe-cokit@${latestVersion}`]);
2628
+ await exec2("bun", ["install", "-g", "--registry", "https://registry.npmjs.org", `vibe-cokit@${latestVersion}`]);
2629
2629
  return { upgraded: true, from: currentVersion, to: latestVersion };
2630
2630
  }
2631
2631
  async function copyAgentFolder(srcDir) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-cokit",
3
- "version": "1.11.1",
3
+ "version": "1.11.2",
4
4
  "description": "A toolkit for interacting with Claude Code",
5
5
  "module": "index.ts",
6
6
  "type": "module",