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 +1 -1
- package/utils/node/loaderIcon.js +1 -1
package/package.json
CHANGED
package/utils/node/loaderIcon.js
CHANGED
|
@@ -189,7 +189,7 @@ async function findAndCopyIcons(files) {
|
|
|
189
189
|
const iconName = groupMatch ? groupMatch[3] : null;
|
|
190
190
|
|
|
191
191
|
try {
|
|
192
|
-
if (!iconName)
|
|
192
|
+
if (!iconName) continue;
|
|
193
193
|
|
|
194
194
|
if (iconName?.includes("?") && iconName?.includes(":")) {
|
|
195
195
|
const [trueName, falseName] = getTernaryValues(iconName);
|