vibe-design-system 2.1.0 → 2.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-design-system",
3
- "version": "2.1.0",
3
+ "version": "2.2.1",
4
4
  "description": "Auto-generate design systems for vibe coding projects",
5
5
  "type": "module",
6
6
  "bin": {
@@ -469,7 +469,6 @@ const COMPONENT_SUGGESTION_KEYWORDS = [
469
469
  { re: /\bchip\b/i, name: "Chip" },
470
470
  { re: /\btile\b/i, name: "Tile" },
471
471
  { re: /\bbanner\b/i, name: "Banner" },
472
- { re: /\bmodal\b/i, name: "Modal" },
473
472
  ];
474
473
 
475
474
  function suggestNameFromPattern(pattern, index) {
@@ -925,6 +925,7 @@ function main() {
925
925
  }
926
926
 
927
927
  for (const comp of components) {
928
+ if (comp.file && comp.file.startsWith("pages/")) continue;
928
929
  const componentName = toSafeComponentName(comp.name, comp.file);
929
930
  if (onlyName && componentName !== onlyName) continue;
930
931
  if (SKIP_LIST.includes(componentName)) continue;