scroll/justfile

18 lines
298 B
Makefile
Raw Normal View History

# Lists the available actions
default:
@just --list
# Code linting with deno
deno-lint:
deno lint
# Code linting with bun
bun-lint:
2023-10-31 14:47:59 -04:00
# Run with bun
bun-run:
bun run ./src/scroll.ts
# Run with deno
deno-run:
deno run --allow-all --allow-ffi --deny-net --deny-hrtime --unstable ./src/scroll.ts