From 7077709e1114e4fe89d5f19ff9cdf4df7de30c28 Mon Sep 17 00:00:00 2001 From: jadkins89 Date: Wed, 6 Jan 2021 17:38:37 -0700 Subject: [PATCH] removing dev code / updating version --- package.json | 2 +- scrapers/index.js | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) 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;