meodp 0.0.8 → 0.0.9
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/dist/cli/index.cjs
CHANGED
|
@@ -7,7 +7,7 @@ const utils = require('consola/utils');
|
|
|
7
7
|
const yargs = require('yargs');
|
|
8
8
|
const helpers = require('yargs/helpers');
|
|
9
9
|
require('playwright');
|
|
10
|
-
const index = require('../shared/meodp.
|
|
10
|
+
const index = require('../shared/meodp.15f2977d.cjs');
|
|
11
11
|
require('node:path');
|
|
12
12
|
require('strip-ansi');
|
|
13
13
|
require('winston');
|
|
@@ -68,13 +68,13 @@ function getErrorMdContent(sites) {
|
|
|
68
68
|
continue;
|
|
69
69
|
}
|
|
70
70
|
const statusInfo = link.statusText ? `${link.statusCode} ${link.statusText}` : link.statusCode;
|
|
71
|
-
md += ` - [${statusInfo}]
|
|
71
|
+
md += ` - [${statusInfo}] [${link.url}](${link.url})
|
|
72
72
|
`;
|
|
73
73
|
for (const req of link.requests) {
|
|
74
74
|
if (req.failed) {
|
|
75
75
|
if (req.statusCode) {
|
|
76
76
|
const statusInfo2 = req.statusText ? `${req.statusCode} ${req.statusText}` : req.statusCode;
|
|
77
|
-
md += ` - [${statusInfo2}]
|
|
77
|
+
md += ` - [${statusInfo2}] [${req.url}](${req.url})
|
|
78
78
|
`;
|
|
79
79
|
} else {
|
|
80
80
|
md += ` - [\u23F0 TIMEOUT] <${req.url}>
|
package/dist/cli/index.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { colors } from 'consola/utils';
|
|
|
5
5
|
import yargs from 'yargs';
|
|
6
6
|
import { hideBin } from 'yargs/helpers';
|
|
7
7
|
import 'playwright';
|
|
8
|
-
import { j as createLowDB, h as defaultMEODPConfig, M as MEODP, r as runByConfig } from '../shared/meodp.
|
|
8
|
+
import { j as createLowDB, h as defaultMEODPConfig, M as MEODP, r as runByConfig } from '../shared/meodp.9a096f50.mjs';
|
|
9
9
|
import 'node:path';
|
|
10
10
|
import 'strip-ansi';
|
|
11
11
|
import 'winston';
|
|
@@ -57,13 +57,13 @@ function getErrorMdContent(sites) {
|
|
|
57
57
|
continue;
|
|
58
58
|
}
|
|
59
59
|
const statusInfo = link.statusText ? `${link.statusCode} ${link.statusText}` : link.statusCode;
|
|
60
|
-
md += ` - [${statusInfo}]
|
|
60
|
+
md += ` - [${statusInfo}] [${link.url}](${link.url})
|
|
61
61
|
`;
|
|
62
62
|
for (const req of link.requests) {
|
|
63
63
|
if (req.failed) {
|
|
64
64
|
if (req.statusCode) {
|
|
65
65
|
const statusInfo2 = req.statusText ? `${req.statusCode} ${req.statusText}` : req.statusCode;
|
|
66
|
-
md += ` - [${statusInfo2}]
|
|
66
|
+
md += ` - [${statusInfo2}] [${req.url}](${req.url})
|
|
67
67
|
`;
|
|
68
68
|
} else {
|
|
69
69
|
md += ` - [\u23F0 TIMEOUT] <${req.url}>
|
package/dist/index.cjs
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { g as getBrowser, s as siteUrlMap } from './shared/meodp.
|
|
2
|
-
export { L as LocalLog, P as PQueueMap, a as checkLink, c as checkMEODPUrl, f as checkSite, e as checkSiteUrl, d as checkUrlNomoduleAssets, j as createLowDB, m as createMEODPLogger, n as createWinstonLogger, h as defaultMEODPConfig, i as defineConfig, y as emojiMap, t as formatArgs, v as getFormattedDataFromResponse, u as getFormattedDuration, z as getMEODPUrlItemInfo, b as getSiteLinks, w as isLink, k as localLog, l as logUrlItemInfo, o as multiBar, x as parseUrlMap, p as progressBarMap, q as registerPageEvents, r as runByConfig } from './shared/meodp.
|
|
1
|
+
import { g as getBrowser, s as siteUrlMap } from './shared/meodp.9a096f50.mjs';
|
|
2
|
+
export { L as LocalLog, P as PQueueMap, a as checkLink, c as checkMEODPUrl, f as checkSite, e as checkSiteUrl, d as checkUrlNomoduleAssets, j as createLowDB, m as createMEODPLogger, n as createWinstonLogger, h as defaultMEODPConfig, i as defineConfig, y as emojiMap, t as formatArgs, v as getFormattedDataFromResponse, u as getFormattedDuration, z as getMEODPUrlItemInfo, b as getSiteLinks, w as isLink, k as localLog, l as logUrlItemInfo, o as multiBar, x as parseUrlMap, p as progressBarMap, q as registerPageEvents, r as runByConfig } from './shared/meodp.9a096f50.mjs';
|
|
3
3
|
import 'consola/utils';
|
|
4
4
|
import 'playwright';
|
|
5
5
|
import 'node:path';
|