build: output into "build" folder again → "dist" will be used for the final output in archive form

this will allow for cleaner separation -> build for the output from the build stage (i.e. TS/Webpack + asset copying) and dist for the archive format of the build folder
This commit is contained in:
Panagiotis Papadopoulos
2025-03-09 08:29:03 +01:00
committed by Panagiotis Papadopoulos
parent 064799e8cb
commit 607f9096aa
7 changed files with 9 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
import fs from "fs-extra";
import path from "path";
const DEST_DIR = "./dist";
const DEST_DIR = "./build";
const VERBOSE = process.env.VERBOSE;