@uxf/scripts 11.61.3 → 11.61.4

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": "@uxf/scripts",
3
- "version": "11.61.3",
3
+ "version": "11.61.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -251,7 +251,15 @@ async function testUrl(url, webUrl, parentUrl = undefined) {
251
251
  const indexInChecked = TESTED_URLS.findIndex((result) => result.url === url);
252
252
  if (indexInChecked === -1) {
253
253
  const result = await fetchUrl(url, webUrl, parentUrl);
254
- TESTED_URLS.push(result);
254
+ TESTED_URLS.push({
255
+ isImg: result.isImg,
256
+ message: result.message,
257
+ parentUrl: result.parentUrl,
258
+ skipped: result.skipped,
259
+ status: result.status,
260
+ ttl: result.ttl,
261
+ url: result.url,
262
+ });
255
263
  return result;
256
264
  }
257
265
  return TESTED_URLS[indexInChecked];