Merge pull request #122 from ikatson/fix-121

Fix #121
This commit is contained in:
Igor Katson 2024-04-18 22:13:29 +04:00 committed by GitHub
commit a881c1cbf9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View file

@ -11,7 +11,7 @@
"css": [
"assets/index-144bafe5.css"
],
"file": "assets/index-4909e839.js",
"file": "assets/index-838acac9.js",
"isEntry": true,
"src": "index.html"
}

View file

@ -46,7 +46,7 @@ const newFileTree = (
directFiles.push(file);
return;
}
getGroup(file.pathComponents[0]).push(file);
getGroup(file.pathComponents[depth]).push(file);
});
directFiles = sortBy(directFiles, (f) => f.filename);