Update build scripts, add gitignore, and update package.json

This commit is contained in:
dertyp7
2024-01-18 21:33:09 +01:00
parent ec3596bd4b
commit eb5ad33531
7 changed files with 75 additions and 2456 deletions

View File

@@ -1,6 +1,16 @@
#!/bin/sh
#!/bin/bash
bash clean_dev_env.sh
./build.sh
# cp files from dist to root folder and keep track of the files in a .dev_files_to_delete file
find ./dist -type f -exec cp {} ./ \; -exec echo {} >> .dev_files_to_delete \;
# Copy files from dist folder to root folder
cp -r dist/* .
echo "# START AUTOGENERATED" >> .gitignore
for file in dist/*; do
echo "${file#dist/}" >> .gitignore
done
echo "# END AUTOGENERATED" >> .gitignore