1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

docs(tools): add a little note about cargo run (#8297)

This commit is contained in:
Casper Beyer 2020-11-09 03:56:36 +08:00 committed by GitHub
parent 8cc5e18f80
commit b244766f9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,3 +23,10 @@ To run linting:
```sh
deno run --allow-read --allow-write --allow-run --unstable ./tools/lint.js
```
Tip: You can also use cargo to run the current or pending build of the deno
executable
```sh
cargo run -- run --allow-read --allow-write --allow-run --unstable ./tools/<script>
```