From 8dba373c8d98dd26548435425f81ff5d41913978 Mon Sep 17 00:00:00 2001 From: Jahnertz Date: Sun, 21 May 2023 21:59:27 +1000 Subject: [PATCH] added beginnings of build script --- build.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 build.js diff --git a/build.js b/build.js new file mode 100644 index 0000000..88d5f90 --- /dev/null +++ b/build.js @@ -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!'); +});