Utensil's Zettelkasten-style forest of evergreen notes on math and tech. utensil.tngl.sh/forest/
0

Configure Feed

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

Try `bunx knip` and fix one issue

utensil (Sep 25, 2024, 5:49 PM +0800) 6dfe6841 b0bd3d58

+6 -1
-1
bun/penrose.js
··· 1 1 // Adapted from https://penrose.cs.cmu.edu/docs/ref/react 2 2 // bun install @penrose/core 3 3 import * as Penrose from '@penrose/core' 4 - import { a } from '@react-spring/three' 5 4 6 5 const fetch_text = async (url) => { 7 6 const response = await fetch(url)
+1
chk.sh
··· 4 4 if [ -n "$CI" ]; then 5 5 bun install 6 6 bunx biome ci 7 + # bunx knip 7 8 else 8 9 # locally, `bun install` should have been run separately 9 10 bunx biome check --fix # --unsafe
+5
knip.json
··· 1 + { 2 + "entry": ["bun/*.{js,ts,jsx,tsx}", "dev.ts", "bun_build.js"], 3 + "project": ["bun/*.{js,ts,jsx,tsx}"], 4 + "ignoreDependencies": ["@use-gpu/.+", "@biomejs/biome", "@penrose/roger", "lightningcss-cli", "wasm-pack"] 5 + }