[READ-ONLY] Mirror of https://github.com/andrioid/gastro. Server Side templates, combining Go (frontmatter) and html/template (body) with full LSP support gastro.andri.dk
golang lsp-server template-engine
0

Configure Feed

Select the types of activity you want to include in your feed.

gastro / scripts / clean
273 B 13 lines
1#!/usr/bin/env bash 2#MISE description="Remove all build artifacts" 3 4set -euo pipefail 5 6rm -rf bin/ 7rm -rf tmp/ 8rm -rf editors/vscode/bin/ 9rm -rf editors/zed/target/ 10rm -rf tree-sitter-gastro/src/ 11rm -rf tree-sitter-gastro/node_modules/ 12 13echo "Cleaned all build artifacts."