47 lines
1.6 KiB
JSON
47 lines
1.6 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/schema",
|
|
"executors": {
|
|
"build": {
|
|
"implementation": "./src/executors/build/executor",
|
|
"schema": "./src/executors/build/schema.json",
|
|
"description": "Build a Rust project with Cargo"
|
|
},
|
|
"check": {
|
|
"implementation": "./src/executors/check/executor",
|
|
"schema": "./src/executors/check/schema.json",
|
|
"description": "Check a Rust project with Cargo"
|
|
},
|
|
"lint": {
|
|
"implementation": "./src/executors/lint/executor",
|
|
"schema": "./src/executors/lint/schema.json",
|
|
"description": "Lint a Rust project with Cargo clippy"
|
|
},
|
|
"run": {
|
|
"implementation": "./src/executors/run/executor",
|
|
"schema": "./src/executors/run/schema.json",
|
|
"description": "Run a Rust project with Cargo"
|
|
},
|
|
"test": {
|
|
"implementation": "./src/executors/test/executor",
|
|
"schema": "./src/executors/test/schema.json",
|
|
"description": "Test a Rust project with Cargo"
|
|
},
|
|
"wasm-pack": {
|
|
"implementation": "./src/executors/wasm-pack/executor",
|
|
"schema": "./src/executors/wasm-pack/schema.json",
|
|
"description": "Builds a Cargo project using wasm-pack"
|
|
},
|
|
"napi": {
|
|
"implementation": "./src/executors/napi/executor",
|
|
"schema": "./src/executors/napi/schema.json",
|
|
"description": "Wrapper to run the napi-cli"
|
|
},
|
|
"release-publish": {
|
|
"implementation": "./src/executors/release-publish/executor",
|
|
"schema": "./src/executors/release-publish/schema.json",
|
|
"description": "DO NOT INVOKE DIRECTLY WITH `nx run`. Use `nx release publish` instead.",
|
|
"hidden": true
|
|
}
|
|
}
|
|
}
|