mobbdev 1.0.107 → 1.0.109

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/index.mjs +838 -397
  2. package/package.json +3 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "1.0.107",
3
+ "version": "1.0.109",
4
4
  "description": "Automated secure code remediation tool",
5
5
  "repository": "git+https://github.com/mobb-dev/bugsy.git",
6
6
  "main": "dist/index.js",
@@ -11,9 +11,8 @@
11
11
  "postinstall": "node ./src/post_install/cx_install.mjs",
12
12
  "build": "tsc && tsup-node --env.NODE_ENV production",
13
13
  "build:dev": "tsup-node --env.NODE_ENV development",
14
- "test:mcp:unit": "vitest run __tests__/mcp/mcp.unit.test.ts",
15
- "test:mcp": "pnpm run build && pnpm run test:mcp:unit",
16
- "test:mcp:watch": "vitest watch __tests__/mcp/mcp.unit.test.ts",
14
+ "test:mcp": "pnpm run build && vitest run __tests__/mcp/",
15
+ "test:mcp:watch": "vitest watch __tests__/mcp/",
17
16
  "test:mcp:verbose": "pnpm run build && NODE_ENV=test VERBOSE=true vitest run __tests__/mcp/",
18
17
  "test:mcp:integration": "pnpm run build && GIT_PROXY_HOST=http://tinyproxy:8888 TOKEN=$(../../scripts/login_auth0.sh) VERBOSE=1 vitest run __tests__/mcp/mcp.integration.test.ts",
19
18
  "test:unit": "GIT_PROXY_HOST=http://tinyproxy:8888 TOKEN=$(../../scripts/login_auth0.sh) vitest run --exclude='**/__tests__/integration.test.ts' --exclude='**/__tests__/mcp/**'",