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.
Files changed (3) hide show
  1. package/.env +1 -2
  2. package/dist/index.mjs +1 -4
  3. package/package.json +1 -1
package/.env CHANGED
@@ -1,5 +1,4 @@
1
- # production@v19
2
- WEB_LOGIN_URL="https://app.mobb.ai/cli-login"
1
+ # production@v20
3
2
  API_URL="https://api.mobb.ai/v1/graphql"
4
3
  WEB_APP_URL="https://app.mobb.ai"
5
4
  GITLAB_API_TOKEN=""
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 WEB_LOGIN_URL, WEB_APP_URL, and API_URL environment variables to hooks config",
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Automated secure code remediation tool",
5
5
  "repository": "git+https://github.com/mobb-dev/bugsy.git",
6
6
  "main": "dist/index.mjs",