Docs site added

This commit is contained in:
Elio Struyf
2021-08-30 15:13:06 +02:00
parent 39d3cf46f3
commit 94a8610edf
62 changed files with 2086 additions and 25 deletions
+7
View File
@@ -0,0 +1,7 @@
const fs = require('fs');
const path = require('path');
(() => {
const changelogPath = path.resolve(__dirname, '../../CHANGELOG.md');
fs.copyFileSync(changelogPath, path.resolve(__dirname, '../content/changelog/CHANGELOG.md'));
})();