aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorSam Scholten2025-11-27 15:05:22 +1100
committerSam Scholten2025-11-27 15:05:22 +1100
commit4c0f4bf3766ba31c2b3bafd10ace6b041d5c1e5a (patch)
tree30e3e9e67ab981f87d3b890c3a20bc6268d5f334 /justfile
parent62998b501e6d79b2d53e968103050422a301cda8 (diff)
downloadacarp-marp-theme-4c0f4bf3766ba31c2b3bafd10ace6b041d5c1e5a.tar.gz
acarp-marp-theme-4c0f4bf3766ba31c2b3bafd10ace6b041d5c1e5a.zip
Improve readme, justfile cleanup etc.
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..."