mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
19 lines
428 B
TOML
19 lines
428 B
TOML
[jobs.example]
|
|
command = ["just", "example"]
|
|
allow_warnings = true
|
|
need_stdout = true
|
|
|
|
[jobs.oxlint]
|
|
command = ["cargo", "--color", "always", "run", "-p", "oxlint"]
|
|
allow_warnings = true
|
|
need_stdout = true
|
|
|
|
[jobs.wasm]
|
|
command = ["just", "build-wasm", "dev"]
|
|
allow_warnings = true
|
|
need_stdout = true
|
|
|
|
[jobs.coverage]
|
|
command = ["cargo", "--color", "always", "run", "-p", "oxc_coverage"]
|
|
allow_warnings = true
|
|
need_stdout = true
|