Everything seems to work except Improv

This commit is contained in:
Djuri 2023-11-07 21:25:54 +01:00
parent 562348b5ea
commit 4538326990
6 changed files with 49 additions and 4 deletions

7
scripts/extra_script.py Normal file
View file

@ -0,0 +1,7 @@
Import("env")
# Build web interface before building FS
def before_buildfs(source, target, env):
env.Execute("cd data && yarn && yarn build")
env.AddPreAction("$BUILD_DIR/spiffs.bin", before_buildfs)