diff --git a/package.json b/package.json index 707a59d..3a4545a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "recipe-scraper", - "version": "1.25.0", + "version": "1.26.0", "description": "A JS package for scraping recipes from the web.", "author": "Justin Adkins ", "license": "MIT", diff --git a/scrapers/index.js b/scrapers/index.js index 4cc9951..9be5c15 100644 --- a/scrapers/index.js +++ b/scrapers/index.js @@ -61,8 +61,4 @@ const recipeScraper = url => { }); }; -recipeScraper( - "https://www.thespruceeats.com/grilled-squid-recipe-1808848" -).then(recipe => console.log(recipe)); - module.exports = recipeScraper;