2023-10-27 16:02:54 -04:00
|
|
|
# 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
|
|
|
|
|
2023-10-27 16:02:54 -04:00
|
|
|
# Run with deno
|
|
|
|
deno-run:
|
|
|
|
deno run --allow-all --allow-ffi --deny-net --deny-hrtime --unstable ./src/scroll.ts
|