guidelinescraper 1.0.3 → 1.0.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/crawl.mjs +0 -4
- package/package.json +1 -1
package/crawl.mjs
CHANGED
|
@@ -109,10 +109,6 @@ let failed = 0;
|
|
|
109
109
|
const crawlStart = Date.now();
|
|
110
110
|
|
|
111
111
|
console.log(`Discovered ${totalPages} pages to crawl.\n`);
|
|
112
|
-
for (const { url, pdfPath } of pages) {
|
|
113
|
-
console.log(` ${pdfPath} ← ${url}`);
|
|
114
|
-
}
|
|
115
|
-
console.log();
|
|
116
112
|
|
|
117
113
|
for (const { pdfPath } of pages) {
|
|
118
114
|
fs.mkdirSync(path.dirname(pdfPath), { recursive: true });
|