vibe-design-system 2.2.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.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "Auto-generate design systems for vibe coding projects",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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;