diff options
Diffstat (limited to 'scripts/generateApi.js')
-rwxr-xr-x | scripts/generateApi.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/generateApi.js b/scripts/generateApi.js index 82bd583..27af063 100755 --- a/scripts/generateApi.js +++ b/scripts/generateApi.js @@ -13,5 +13,7 @@ posts = posts.map(({ year, month, day, title, attributes, route }) => { } }) +posts.sort((a, b) => (a.route > b.route ? 1 : -1)) + fs.writeFile('./dist/api/posts.json', JSON.stringify(posts), (err) => err ? console.log(err) : null) console.log(posts) |