@westbayberry/dg 1.0.46 → 1.0.47

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 +4 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -83909,6 +83909,9 @@ function reducer(state, action) {
83909
83909
  case "scenario_acked":
83910
83910
  return { ...state, phase: "confirm_hook" };
83911
83911
  case "first_scan_acked":
83912
+ if (state.firstRun && state.skipped.has("install_hook")) {
83913
+ return { ...state, phase: "pitch_app" };
83914
+ }
83912
83915
  return { ...state, phase: state.firstRun ? "what_happens_next" : "pitch_app" };
83913
83916
  case "what_happens_next_acked":
83914
83917
  return { ...state, phase: "pitch_app" };
@@ -87442,7 +87445,7 @@ var init_InitApp = __esm({
87442
87445
  /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Text, { children: " " }),
87443
87446
  /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Text, { children: "Want me to set it up?" }),
87444
87447
  /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Text, { children: " " }),
87445
- yesNoRow("Yes", "I know what I'm doing"),
87448
+ yesNoRow("Yes", "No"),
87446
87449
  stepHint
87447
87450
  ] });
87448
87451
  case "install_hook":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@westbayberry/dg",
3
- "version": "1.0.46",
3
+ "version": "1.0.47",
4
4
  "description": "Supply chain security scanner for npm and Python dependencies — detects malicious packages, typosquatting, dependency confusion, and 26+ attack patterns",
5
5
  "bin": {
6
6
  "dependency-guardian": "dist/index.mjs",