| Sean McCullough | 86b5686 | 2025-04-18 13:04:03 -0700 | [diff] [blame] | 1 | all: install check |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 2 | |
| 3 | install: | ||||
| 4 | npm ci | ||||
| 5 | |||||
| 6 | # TypeScript type checking | ||||
| 7 | # Note: The actual esbuild bundling happens in esbuild.go | ||||
| 8 | check: | ||||
| 9 | npx tsc --noEmit | ||||
| 10 | |||||
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 11 | clean: |
| 12 | rm -rf node_modules | ||||