Add documentation website with generator

This commit is contained in:
karashiiro 2021-05-27 19:23:29 -07:00
parent 6844ec4444
commit 67fb8a31c8
5 changed files with 3406 additions and 13 deletions

6
gh-pages.js Normal file
View file

@ -0,0 +1,6 @@
const ghpages = require("gh-pages");
ghpages.publish("docs/", (err) => {
if (err) {
console.error(err);
}
});