mobbdev 1.1.3 → 1.1.4
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/.env +1 -2
- package/dist/index.mjs +1 -4
- package/package.json +1 -1
package/.env
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -13432,9 +13432,6 @@ async function installMobbHooks(options = {}) {
|
|
|
13432
13432
|
let command = "npx --yes mobbdev@latest claude-code-process-hook";
|
|
13433
13433
|
if (options.saveEnv) {
|
|
13434
13434
|
const envVars = [];
|
|
13435
|
-
if (process.env["WEB_LOGIN_URL"]) {
|
|
13436
|
-
envVars.push(`WEB_LOGIN_URL="${process.env["WEB_LOGIN_URL"]}"`);
|
|
13437
|
-
}
|
|
13438
13435
|
if (process.env["WEB_APP_URL"]) {
|
|
13439
13436
|
envVars.push(`WEB_APP_URL="${process.env["WEB_APP_URL"]}"`);
|
|
13440
13437
|
}
|
|
@@ -13483,7 +13480,7 @@ async function installMobbHooks(options = {}) {
|
|
|
13483
13480
|
var claudeCodeInstallHookBuilder = (yargs2) => {
|
|
13484
13481
|
return yargs2.option("save-env", {
|
|
13485
13482
|
type: "boolean",
|
|
13486
|
-
description: "Save
|
|
13483
|
+
description: "Save WEB_APP_URL, and API_URL environment variables to hooks config",
|
|
13487
13484
|
default: false
|
|
13488
13485
|
}).example(
|
|
13489
13486
|
"$0 claude-code-install-hook",
|