[READ-ONLY] Mirror of https://github.com/bombshell-dev/tty. Platform independent 2D layout engine for terminal applications based on Clay
5

Configure Feed

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

๐Ÿ› fix CI: add license field, build wasm before verify jobs

Charles Lowell (Mar 16, 2026, 7:03 PM -0500) f230b87e 455fdb63

+7
+6
.github/workflows/verify.yaml
··· 50 50 with: 51 51 deno-version: v2.x 52 52 53 + - name: build wasm 54 + run: make 55 + 53 56 - name: Build JSR 54 57 run: deno task build:jsr 0.0.0-verify.0 55 58 ··· 74 77 uses: actions/setup-node@v4 75 78 with: 76 79 node-version: 24 80 + 81 + - name: build wasm 82 + run: make 77 83 78 84 - name: Build 79 85 run: deno task build:npm 0.0.0-verify.0
+1
deno.json
··· 1 1 { 2 2 "name": "@clayterm/clayterm", 3 + "license": "MIT", 3 4 "tasks": { 4 5 "test": "deno test --allow-read", 5 6 "fmt": "deno fmt && clang-format -i src/*.c src/*.h",