diff options
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,14 +1,14 @@ default: - echo "Available recipes: build, test, clean, generate-schema" - -generate-schema: - python3 scripts/generate_ts_schema.py + echo "Available recipes: build, deploy, test, clean" build: - python3 scripts/generate_ts_schema.py && sudo rm -rf node_modules && .vscode/build.sh + pnpm build + +deploy: + ./scripts/deploy-to-deck.sh test: - scp "out/Decky LSFG-VK.zip" deck@192.168.0.6:~/Desktop + pnpm test watch: ssh deck@192.168.0.6 "journalctl -f" @@ -18,4 +18,4 @@ cef: clean: rm -rf node_modules dist - sudo rm -rf /tmp/decky
\ No newline at end of file + sudo rm -rf /tmp/decky |
