Skip to content
Snippets Groups Projects
Commit 3742abb2 authored by Egor Fuchezhi's avatar Egor Fuchezhi
Browse files

Added bundle.json

parent 91ba2530
No related branches found
No related tags found
1 merge request!1136chore: incorporate webui submodule
......@@ -10,7 +10,7 @@ const currentDir = "./picodata-ui";
const walkSync = function (dir, filelist = []) {
const files = fs.readdirSync(dir);
const currentFileList = [...filelist];
let currentFileList = [...filelist];
files.forEach((file) => {
if (fs.statSync(dir + file).isDirectory()) {
currentFileList = walkSync(dir + file + "/", currentFileList);
......@@ -58,8 +58,8 @@ const somePluginFunc = (currentNamespace = "") => {
lua + " " + pathToPacker + " ./dist/bundle.json ./dist/" + bundleName
);
debug("dist " + bundleName);
fs.unlinkSync(buildFolder + "/bundle.json");
debug("delete bundle.json");
// fs.unlinkSync(buildFolder + "/bundle.json");
// debug("delete bundle.json");
},
};
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment