@go-to-k/cdkd 0.150.2 → 0.151.1

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/README.md CHANGED
@@ -245,6 +245,9 @@ cdkd deploy MyStack \
245
245
 
246
246
  # Show diff (what would change)
247
247
  cdkd diff MyStack
248
+ cdkd diff MyParent --recursive # also diff every nested-stack child vs its own state (#555 A5)
249
+ cdkd diff MyParent --recursive --json # nested {stack, changes, children: [...]} JSON
250
+ cdkd diff MyStack --fail # exit 1 when any change is detected (CI gate; matches cdk diff --fail)
248
251
 
249
252
  # Detect drift between cdkd state and AWS reality (state-only; no synth)
250
253
  # Exits 0 with no drift, 1 when drift is detected, 2 on partial revert failure.