added beginnings of build script

trunk
Jahnertz 2023-05-21 21:59:27 +10:00
parent 28a2793943
commit 8dba373c8d
1 changed files with 6 additions and 0 deletions

6
build.js 100644
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!');
});