summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/getPosts.ts31
1 files changed, 15 insertions, 16 deletions
diff --git a/lib/getPosts.ts b/lib/getPosts.ts
index 1821f12..38e419c 100644
--- a/lib/getPosts.ts
+++ b/lib/getPosts.ts
@@ -4,27 +4,26 @@ import { readDir } from "./utils";
 
 function getPosts(path: string): Array<Post> {
   let routesArray: Post[] = [];
-  try {
-    const years = readDir(`${path}`);
-    years.forEach((year: string) => {
-      const months = readDir(`${path}/${year}`);
-      months.forEach((month: string) => {
-        const days = readDir(`${path}/${year}/${month}`);
-        days.forEach((day: string) => {
-          const files = readDir(`${path}/${year}/${month}/${day}`);
-          files.forEach((file: string) => {
-            const fsRoute = `${path}/${year}/${month}/${day}/${file}`;
-
+  const years = readDir(`${path}`);
+  years.forEach((year: string) => {
+    const months = readDir(`${path}/${year}`);
+    months.forEach((month: string) => {
+      const days = readDir(`${path}/${year}/${month}`);
+      days.forEach((day: string) => {
+        const files = readDir(`${path}/${year}/${month}/${day}`);
+        files.forEach((file: string) => {
+          const fsRoute = `${path}/${year}/${month}/${day}/${file}`;
+          try {
             const post = parsePost(fsRoute);
-
             routesArray.push(post);
-          });
+          } catch (err) {
+            console.log(err);
+          }
         });
       });
     });
-  } finally {
-    return routesArray;
-  }
+  });
+  return routesArray;
 }
 
 function createRoutesArray() {