This commit is contained in:
2023-05-10 15:23:51 +02:00
168 changed files with 35051 additions and 5929 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
if [ "$1" = "dist" ]
then
if [ -z "$2" ]
then
npm run package-all
else
npm run package-app-$2
fi
else
electron . ./lib/index.html
fi