14 lines
248 B
Makefile
14 lines
248 B
Makefile
# Lists the available actions
|
|
default:
|
|
@just --list
|
|
|
|
# Code linting with deno
|
|
deno-lint:
|
|
deno lint
|
|
|
|
# Code linting with bun
|
|
bun-lint:
|
|
|
|
# Run with deno
|
|
deno-run:
|
|
deno run --allow-all --allow-ffi --deny-net --deny-hrtime --unstable ./src/scroll.ts
|