chore: bump build number to 8
This commit is contained in:
@@ -6,6 +6,8 @@ import {createLog} from "../services/logger/logger.js";
|
||||
|
||||
// create the ignore list
|
||||
const ignoreList = [
|
||||
".git",
|
||||
"builds",
|
||||
"node_modules",
|
||||
"apiDocsLSTV2",
|
||||
"testFiles",
|
||||
@@ -14,6 +16,7 @@ const ignoreList = [
|
||||
".versionrc.json",
|
||||
"drizzle-dev.config.ts",
|
||||
"nssm.exe",
|
||||
"postgresql-17.2-3-windows-x64.exe",
|
||||
// front end ignore
|
||||
"/frontend/node_modules",
|
||||
"fonrtend/.env",
|
||||
@@ -152,4 +155,16 @@ export const createZip = async (appLock: string) => {
|
||||
}
|
||||
};
|
||||
|
||||
createZip("C:\\Users\\matthes01\\Documents\\lstv2");
|
||||
//createZip("C:\\Users\\matthes01\\Documents\\lstv2");
|
||||
|
||||
// Only call `createZip` if the script is executed directly
|
||||
if (import.meta.url === `file://${process.argv[1]}`) {
|
||||
const location = process.argv[2];
|
||||
|
||||
if (!location) {
|
||||
console.error("Error: No location provided.");
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
createZip(location);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user