single-file-core 1.2.30 → 1.2.31
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.
|
@@ -224,7 +224,7 @@ class ProcessorHelperCommon {
|
|
|
224
224
|
// ignored
|
|
225
225
|
}
|
|
226
226
|
if (testValidURL(resourceURL)) {
|
|
227
|
-
|
|
227
|
+
return this.processImageSrcset(resourceURL, srcsetValue, resources, batchRequest);
|
|
228
228
|
} else {
|
|
229
229
|
return "";
|
|
230
230
|
}
|
|
@@ -181,8 +181,16 @@ function testUsedFont(ruleData, familyName, declaredFonts, filteredUsedFonts) {
|
|
|
181
181
|
fontInfo[2] = "normal";
|
|
182
182
|
return getUsedFontWeight(fontInfo, fontStyle, declaredFontsWeights);
|
|
183
183
|
});
|
|
184
|
+
test = testFontweight(fontWeight, usedFontWeights);
|
|
185
|
+
if (!test) {
|
|
186
|
+
usedFontWeights = optionalUsedFonts.map(fontInfo => {
|
|
187
|
+
fontInfo = Array.from(fontInfo);
|
|
188
|
+
fontInfo[2] = fontStyle = "normal";
|
|
189
|
+
return getUsedFontWeight(fontInfo, fontStyle, declaredFontsWeights);
|
|
190
|
+
});
|
|
191
|
+
test = testFontweight(fontWeight, usedFontWeights);
|
|
192
|
+
}
|
|
184
193
|
}
|
|
185
|
-
test = testFontweight(fontWeight, usedFontWeights);
|
|
186
194
|
} else {
|
|
187
195
|
test = true;
|
|
188
196
|
}
|
package/package.json
CHANGED
|
@@ -127,10 +127,7 @@ async function extract(content, { password, prompt = () => { }, shadowRootScript
|
|
|
127
127
|
}
|
|
128
128
|
}));
|
|
129
129
|
await zipReader.close();
|
|
130
|
-
resources.reverse();
|
|
131
|
-
resources.sort(sortByFilenameLength);
|
|
132
130
|
indexPages.sort(sortByFilenameLength);
|
|
133
|
-
resources.sort((resourceLeft, resourceRight) => resourceRight.textContent ? -1 : resourceLeft.textContent ? 1 : 0);
|
|
134
131
|
resources = resources.concat(...indexPages);
|
|
135
132
|
for (const resource of resources) {
|
|
136
133
|
let { textContent, mimeType, filename } = resource;
|