From 6f6bef5ff66083b7102f16593049d51307b89f04 Mon Sep 17 00:00:00 2001 From: sverweij Date: Sat, 8 Jun 2024 18:57:15 +0200 Subject: [PATCH] doc(FAQ): copy update --- doc/faq.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/doc/faq.md b/doc/faq.md index 70dad41ab..ffa6d99e1 100644 --- a/doc/faq.md +++ b/doc/faq.md @@ -377,7 +377,7 @@ situations without workarounds). -### Q: Does this work with Vue as well? +### Q: Does this work with Vue? **A**: Yes. @@ -397,7 +397,7 @@ manually. -### Q: Does this work with Svelte as well? +### Q: Does this work with Svelte? **A**: Yes. @@ -601,6 +601,19 @@ export default { +### Q: Does dependency-cruiser support granularity finer than modules (e.g. classes, functions, variables, ...)? + +**A**: No. It's unlikely to grow that in the future either. + +
+Background +dependency-cruiser focuses on dependencies between modules as the one thing to do +well. Static analysis of classes, functions and methods and their dependencies +is _very_ interesting to dive into, but it'd make dependency-cruiser a different +tool altogether. Besides it's non-trivial to implement and labor intensive to +maintain both of which take time. +
+ ## Expanding dependency-cruiser ### Q: How do I add a new output format?