@jcanizalez7/clauxy 0.2.7 → 0.2.8
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/cli.js +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -2640,7 +2640,7 @@ async function wrapperCommand(options) {
|
|
|
2640
2640
|
let proxyServer = null;
|
|
2641
2641
|
if (requestedPort && await isClauxyRunning(requestedPort)) {
|
|
2642
2642
|
proxyPort = requestedPort;
|
|
2643
|
-
console.log(`${colors.green(">")} ${colors.bold("Clauxy")} reusing
|
|
2643
|
+
console.log(`${colors.green(">")} ${colors.bold("Clauxy")} reusing ${colors.cyan(`localhost:${proxyPort}`)}`);
|
|
2644
2644
|
} else {
|
|
2645
2645
|
const { startProxy: startProxy2 } = await init_proxy().then(() => exports_proxy);
|
|
2646
2646
|
const server = await startProxy2({
|
|
@@ -2651,7 +2651,7 @@ async function wrapperCommand(options) {
|
|
|
2651
2651
|
});
|
|
2652
2652
|
proxyServer = server;
|
|
2653
2653
|
proxyPort = server.port;
|
|
2654
|
-
console.log(`${colors.green(">")} ${colors.bold("Clauxy")}
|
|
2654
|
+
console.log(`${colors.green(">")} ${colors.bold("Clauxy")} on ${colors.cyan(`localhost:${proxyPort}`)}`);
|
|
2655
2655
|
}
|
|
2656
2656
|
const claude = Bun.spawn(["claude"], {
|
|
2657
2657
|
env: {
|
|
@@ -2827,7 +2827,7 @@ Models configured:`);
|
|
|
2827
2827
|
// package.json
|
|
2828
2828
|
var package_default = {
|
|
2829
2829
|
name: "@jcanizalez7/clauxy",
|
|
2830
|
-
version: "0.2.
|
|
2830
|
+
version: "0.2.8",
|
|
2831
2831
|
description: "Multi-provider AI proxy for Claude Code (GitHub Copilot, ChatGPT Plus, Google Gemini)",
|
|
2832
2832
|
type: "module",
|
|
2833
2833
|
bin: {
|