diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-08-25 19:48:15 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-08-25 19:48:15 -0400 |
| commit | 9c1b7e1e48677e071cc2d41ccdefb059418a2140 (patch) | |
| tree | 2267160d043f7db332edb156d8a29265c186e97d /justfile | |
| parent | 0964715817eefb561eec678e21c08da40e2af52b (diff) | |
| download | decky-bazzite-buddy-9c1b7e1e48677e071cc2d41ccdefb059418a2140.tar.gz decky-bazzite-buddy-9c1b7e1e48677e071cc2d41ccdefb059418a2140.zip | |
add justfile and docker build
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/justfile b/justfile new file mode 100644 index 0000000..56e90cc --- /dev/null +++ b/justfile @@ -0,0 +1,24 @@ +# Justfile for managing build tasks + +# Install dependencies +install: + pnpm install + +# Clean build artifacts and temporary files +clean: + sudo rm -rf dist/ + sudo rm -rf out/ + sudo rm -rf node_modules/.cache/ + sudo rm -rf .rollup.cache/ + echo "Cleaned build artifacts" + +# Build the plugin +build: + .vscode/build.sh + +# Build in development mode with watch +dev: + pnpm run watch + +# Clean and rebuild everything +rebuild: clean install build |
