summaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-08-25 19:54:31 -0400
committerGitHub <noreply@github.com>2025-08-25 19:54:31 -0400
commit8177dc60975fff0060c02d8f1a4d24d4510f249a (patch)
tree1e5a23cfb7fa21ceda972ed40b15ba914e1db652 /justfile
parent358a0933031a1e862dc46194f75d1ec6d0ec26fc (diff)
parent7594773703c865dd160c7de7dbf5035a8c95ae43 (diff)
downloaddecky-bazzite-buddy-main.tar.gz
decky-bazzite-buddy-main.zip
Merge pull request #6 from xXJSONDeruloXx/new-uiHEADv1.3.0main
New UI
Diffstat (limited to 'justfile')
-rw-r--r--justfile24
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