diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-13 23:48:12 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-13 23:48:12 +0200 |
commit | 4274595b251632ef004d5f1429d7fbdde1cd4a5a (patch) | |
tree | c8a5ac120ddd03e161ecac522b1180f3a815cf70 /src/getPosts.ts | |
parent | 0ccea881106946b66d167eee0ec8116ae4e3019e (diff) | |
download | kronikarz-4274595b251632ef004d5f1429d7fbdde1cd4a5a.tar.gz kronikarz-4274595b251632ef004d5f1429d7fbdde1cd4a5a.zip |
Add publish options
Diffstat (limited to 'src/getPosts.ts')
-rw-r--r-- | src/getPosts.ts | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/getPosts.ts b/src/getPosts.ts deleted file mode 100644 index 4170292..0000000 --- a/src/getPosts.ts +++ /dev/null @@ -1,36 +0,0 @@ -import * as fs from "fs"; -import { Post } from "./interfaces"; -import parsePost from "./parsePost"; -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 post = parsePost(fsRoute); - - routesArray.push(post); - }); - }); - }); - }); - } finally { - return routesArray; - } -} - -function createRoutesArray() { - // let posts = getPosts(); - // return posts.map(post => post.route); -} - -export { getPosts, createRoutesArray }; |