18 lines
298 B
Makefile
18 lines
298 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 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
|