From 6192861a4a377ffc63c7bdc9796436339a3bd307 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 24 May 2025 06:15:10 +0200 Subject: [PATCH] auto-git: [change] main.js --- main.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/main.js b/main.js index fe4592e..7798443 100644 --- a/main.js +++ b/main.js @@ -487,10 +487,9 @@ app.whenReady().then(() => { // Auto-Verzeichnisstruktur const IGNORED_NAMES = [ '.DS_Store', 'node_modules', '.git', 'dist', 'build', - '.cache', 'out', '.venv', '.mypy_cache', '__pycache__' + '.cache', 'out', '.venv', '.mypy_cache', '__pycache__', 'package-lock.json' ]; - // Hilfsfunktion: Dateinamen oder Ordner ignorieren? function isIgnored(name) { return IGNORED_NAMES.includes(name); } @@ -508,9 +507,7 @@ app.whenReady().then(() => { list.push({ name: dirent.name, type: 'file' }); } }); - } catch (e) { - // Permissions o.รค. ignorieren - } + } catch (e) {} return list; }