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.
Files changed (2) hide show
  1. package/crawl.mjs +0 -4
  2. 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 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "guidelinescraper",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "type": "module",
5
5
  "description": "Scrape a Frontify brand portal and save every page as PDF and clean HTML",
6
6
  "bin": {