cmap functions, email, architecture documentation.

This commit is contained in:
2026-08-18 03:33:10 +02:00
parent 12f1ed2764
commit 63b7ca0853
33 changed files with 3974 additions and 80 deletions
+1 -19
View File
@@ -2,8 +2,7 @@
(require rash-coreutils
rash-makefile
rash-git-cli
racket-sprintf)
rash-git-cli)
(makefile racket-wiki
@@ -14,20 +13,6 @@
(target ver
(displayln (git* next-version)))
(target status
(map (λ (e)
(displayln
(sprintf "%-40.40s: %-15.15s %-15.15s"
(caddr e) (cadr e) (car e))))
(git 'status)))
(target sync
{
git add -A
git commit
git push
})
(target zip
(deps clean)
(zip-package #:exclude '("wiki-data")))
@@ -38,8 +23,5 @@
(for-each (λ (f) (displayln f) (rm-f f)) (list-files "scrbl" #px"[.](css|js|html)$"))
)
(target refresh
(refresh-makefile))
)