dev: Fix npm start-electron script

This commit is contained in:
Elian Doran 2024-07-14 13:03:06 +03:00
parent f40257b591
commit 595402adea
No known key found for this signature in database
2 changed files with 12 additions and 5 deletions

View File

@ -1,5 +1,5 @@
const fs = require("fs-extra");
const path = require("path");
import fs from "fs-extra";
import path from "path";
const DEST_DIR = "./dist";
const DEST_DIR_SRC = path.join(DEST_DIR, "src");
@ -15,6 +15,12 @@ async function copyNodeModuleFileOrFolder(source: string) {
}
const copy = async () => {
for (const srcFile of fs.readdirSync("build")) {
const destFile = path.join(DEST_DIR, path.basename(srcFile));
console.log(`Copying source ${srcFile} -> ${destFile}.`);
fs.copySync(path.join("build", srcFile), destFile, { recursive: true });
}
const filesToCopy = ["config-sample.ini"];
for (const file of filesToCopy) {
console.log(`Copying ${file}`);
@ -27,11 +33,11 @@ const copy = async () => {
await fs.copy(dir, path.join(DEST_DIR, dir));
}
const srcDirsToCopy = ["./src/public", "./src/views"];
const srcDirsToCopy = ["./src/public", "./src/views", "./build"];
for (const dir of srcDirsToCopy) {
console.log(`Copying ${dir}`);
await fs.copy(dir, path.join(DEST_DIR_SRC, path.basename(dir)));
}
}
const nodeModulesFile = [
"node_modules/react/umd/react.production.min.js",

View File

@ -9,7 +9,8 @@
"resolveJsonModule": true,
"lib": ["ES2022"],
"downlevelIteration": true,
"skipLibCheck": true
"skipLibCheck": true,
"esModuleInterop": true
},
"include": [
"./src/**/*.js",