Copy image directory to dist.

This commit is contained in:
Dillon Kearns 2020-10-16 18:51:29 -07:00
parent c960dffdca
commit 5a7374114a

View File

@ -150,7 +150,8 @@ async function copyAssets() {
fs.copyFile("user-index.js", "dist/user-index.js");
fs.copyFile("style.css", "dist/style.css");
fs.copyDirFlat("static", "dist");
fs.copyDirNested("images", "dist");
fs.tryMkdir("dist/images");
fs.copyDirNested("images", "dist/images");
}
async function compileCliApp() {