-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexecutors.json
More file actions
46 lines (46 loc) · 1.74 KB
/
Copy pathexecutors.json
File metadata and controls
46 lines (46 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"$schema": "http://json-schema.org/schema",
"executors": {
"build": {
"implementation": "./dist/executors/build/executor",
"schema": "./dist/executors/build/schema.json",
"description": "Build a Rust crate with `cargo build`."
},
"check": {
"implementation": "./dist/executors/check/executor",
"schema": "./dist/executors/check/schema.json",
"description": "Type-check a Rust crate with `cargo check`."
},
"clippy": {
"implementation": "./dist/executors/clippy/executor",
"schema": "./dist/executors/clippy/schema.json",
"description": "Lint a Rust crate with `cargo clippy`."
},
"lint": {
"implementation": "./dist/executors/clippy/executor",
"schema": "./dist/executors/clippy/schema.json",
"description": "Alias for `clippy`. Runs `cargo clippy` against a crate."
},
"fmt": {
"implementation": "./dist/executors/fmt/executor",
"schema": "./dist/executors/fmt/schema.json",
"description": "Format a Rust crate with `cargo fmt`."
},
"run": {
"implementation": "./dist/executors/run/executor",
"schema": "./dist/executors/run/schema.json",
"description": "Run a Rust binary with `cargo run`."
},
"test": {
"implementation": "./dist/executors/test/executor",
"schema": "./dist/executors/test/schema.json",
"description": "Test a Rust crate with `cargo test` (or `cargo nextest` when available)."
},
"release-publish": {
"implementation": "./dist/executors/release-publish/executor",
"schema": "./dist/executors/release-publish/schema.json",
"description": "Publish a Rust crate to a registry. Invoke via `nx release publish`, not directly.",
"hidden": true
}
}
}