39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
import json
|
|
import os
|
|
|
|
def get_all_files(directory):
|
|
files = []
|
|
for root, _, filenames in os.walk(directory):
|
|
for filename in filenames:
|
|
path = os.path.join(root, filename)
|
|
# Convert to relative path and normalize separators
|
|
rel_path = os.path.relpath(path, directory)
|
|
files.append(rel_path.replace('\\', '/'))
|
|
return files
|
|
|
|
PREFETCH = ""
|
|
VERSIONCO = "2025-07-31_2"
|
|
HANDLEPARSE = get_all_files("src")
|
|
|
|
# Combine assets from JSON and recursively found files
|
|
ASSETS = get_all_files("assets")
|
|
|
|
for asset in ASSETS:
|
|
if asset != "sw.js":
|
|
PREFETCH += f'<link rel="prefetch" href="{asset}" />\n'
|
|
|
|
os.system("rm -r dist ; mkdir -p dist ; cp -r assets/* dist/")
|
|
def replace_handles(string):
|
|
string = string.replace("%%PREFETCH%%", PREFETCH)
|
|
string = string.replace("%%VERSIONCO%%", VERSIONCO)
|
|
string = string.replace("%%ASSETSJSON%%", json.dumps(ASSETS, ensure_ascii=False))
|
|
return string
|
|
|
|
|
|
for file in HANDLEPARSE:
|
|
print(file)
|
|
with open("src/" + file, "r") as f1:
|
|
out = replace_handles(f1.read())
|
|
with open("dist/" + file, "w") as f2:
|
|
f2.write(out)
|