From 18c699b1f4c0eaf9eb35210a7f762dd651fa1dcc Mon Sep 17 00:00:00 2001 From: "brobert (aider)" Date: Tue, 1 Apr 2025 15:18:40 +0200 Subject: [PATCH] feat: remove test limit to process all blog posts --- scrape-blog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrape-blog.ts b/scrape-blog.ts index 68187bc..5fa8e80 100644 --- a/scrape-blog.ts +++ b/scrape-blog.ts @@ -92,7 +92,7 @@ async function fetchBlogPosts(): Promise { // Process posts sequentially with delay const results = []; - for (const url of postUrls.slice(0, 10)) { // Limit to 10 posts for initial testing + for (const url of postUrls) { // Process all posts results.push(await processPost(url)); }