jhan.com.au/build.js

8 lines
214 B
JavaScript
Raw Normal View History

2023-05-21 11:59:27 +00:00
const fs = require('fs');
2023-05-21 12:37:26 +00:00
//todo: read through files and fill in components before copying
2023-05-21 12:03:32 +00:00
fs.cp('./src/','./build', { recursive: true }, (err) => {
2023-05-21 11:59:27 +00:00
if (err) throw err;
console.log('Build was successful!');
});