clean-web-scraper 4.0.7 → 4.1.0

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/main.js +1 -1
  2. package/package.json +1 -1
package/main.js CHANGED
@@ -110,7 +110,7 @@ class WebScraper
110
110
 
111
111
  async processUrl ( url, depth, queue )
112
112
  {
113
- console.log( `Processing URL: ${url}` );
113
+ console.log( `Processing URL: ${url}. Total visited: ${this.visited.size}. Total processed: ${this.allProcessedContent.length}.` );
114
114
  if ( this.hasReachedMax( depth ) )
115
115
  {
116
116
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clean-web-scraper",
3
- "version": "4.0.7",
3
+ "version": "4.1.0",
4
4
  "main": "main.js",
5
5
  "scripts": {
6
6
  "start": "node main.js",