added beginnings of build script

This commit is contained in:
Jahnertz 2023-05-21 21:59:27 +10:00
parent 28a2793943
commit 8dba373c8d

6
build.js Normal file
View File

@ -0,0 +1,6 @@
const fs = require('fs');
fs.cp('src/index.html','build/index.html', (err) => {
if (err) throw err;
console.log('Build was successful!');
});