Last active
November 12, 2020 05:48
-
-
Save kt3k/930321d1f97d285ea17f08ada3a0ff31 to your computer and use it in GitHub Desktop.
tasks.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { toml } from 'https://deno.land/x/tasks/mod.ts'; | |
toml` | |
[lint] | |
desc = "" | |
cmd = "deno run tools/lint.js" | |
env = { RUST_BACKTRACE = 1 } | |
[build] | |
desc = "" | |
cmd = "cargo build" | |
[fmt] | |
cmd = "deno run tools/format.js" | |
` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment