vueless 0.0.686 → 0.0.687

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": "vueless",
3
- "version": "0.0.686",
3
+ "version": "0.0.687",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -189,7 +189,7 @@ async function findAndCopyIcons(files) {
189
189
  const iconName = groupMatch ? groupMatch[3] : null;
190
190
 
191
191
  try {
192
- if (!iconName) return;
192
+ if (!iconName) continue;
193
193
 
194
194
  if (iconName?.includes("?") && iconName?.includes(":")) {
195
195
  const [trueName, falseName] = getTernaryValues(iconName);