vibe-design-system 2.8.35 → 2.8.36

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-design-system",
3
- "version": "2.8.35",
3
+ "version": "2.8.36",
4
4
  "description": "Auto-generate design systems for vibe coding projects",
5
5
  "homepage": "https://vibedesign.tech",
6
6
  "repository": {
@@ -52,16 +52,29 @@ const COMPONENTS_DIR = resolveDir("VDS_COMPONENTS_DIR", [
52
52
  path.join(PROJECT_ROOT, "app", "components"),
53
53
  path.join(PROJECT_ROOT, "src", "views"),
54
54
  path.join(PROJECT_ROOT, "src", "modules"),
55
+ // Fullstack / monorepo patterns (client/, frontend/, web/)
56
+ path.join(PROJECT_ROOT, "client", "src", "components"),
57
+ path.join(PROJECT_ROOT, "frontend", "src", "components"),
58
+ path.join(PROJECT_ROOT, "web", "src", "components"),
59
+ path.join(PROJECT_ROOT, "client", "components"),
60
+ path.join(PROJECT_ROOT, "frontend", "components"),
55
61
  ]);
56
62
 
57
63
  const PAGES_DIR = resolveDir("VDS_PAGES_DIR", [
58
64
  path.join(PROJECT_ROOT, "src", "pages"),
59
65
  path.join(PROJECT_ROOT, "pages"),
66
+ // Fullstack / monorepo patterns
67
+ path.join(PROJECT_ROOT, "client", "src", "pages"),
68
+ path.join(PROJECT_ROOT, "frontend", "src", "pages"),
69
+ path.join(PROJECT_ROOT, "web", "src", "pages"),
60
70
  ]);
61
71
 
62
72
  const APP_DIR = resolveDir("VDS_APP_DIR", [
63
73
  path.join(PROJECT_ROOT, "src", "app"),
64
74
  path.join(PROJECT_ROOT, "app"),
75
+ // Fullstack / monorepo patterns
76
+ path.join(PROJECT_ROOT, "client", "src", "app"),
77
+ path.join(PROJECT_ROOT, "frontend", "src", "app"),
65
78
  ]);
66
79
 
67
80
  // ── Monorepo detection ────────────────────────────────────────────────────────