aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/justfile b/justfile
index dfe3fe3..19b52f2 100644
--- a/justfile
+++ b/justfile
@@ -12,6 +12,7 @@ help:
@echo " pdf <file> - Export to PDF"
@echo " new <name> - Create presentation"
@echo " clean - Remove output files"
+ @echo " cleanup - Clean everything including node_modules"
@echo " demo - Build demo presentations"
@echo ""
@echo "Themes: acarp (16:9), acarp-beamer (4:3)"
@@ -64,6 +65,14 @@ new name:
clean:
@rm -f *.html *.pdf *.pptx
+# Clean everything including node_modules
+cleanup: clean
+ @echo "Removing node_modules..."
+ @rm -rf node_modules/
+ @echo "Removing package-lock.json..."
+ @rm -f package-lock.json
+ @echo "Cleanup complete. Run 'just install' to reinstall dependencies."
+
# Build demo presentations
demo:
@echo "Building demo-standard.md..."