about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/generateApi.js5
-rwxr-xr-xscripts/postbuild.sh1
2 files changed, 6 insertions, 0 deletions
diff --git a/scripts/generateApi.js b/scripts/generateApi.js
index f72745e..7635f02 100755
--- a/scripts/generateApi.js
+++ b/scripts/generateApi.js
@@ -20,4 +20,9 @@ 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
 )
+
+fs.writeFile('./static/api/posts.json', JSON.stringify(posts), err =>
+  err ? console.log(err) : null
+)
+
 console.log(posts)
diff --git a/scripts/postbuild.sh b/scripts/postbuild.sh
index 85e35f9..6da3659 100755
--- a/scripts/postbuild.sh
+++ b/scripts/postbuild.sh
@@ -1,6 +1,7 @@
 #!/usr/bin/env bash
 
 mkdir ./dist/api
+mkdir ./static/api
 
 node -r esm ./scripts/generateApi.js