mirror of
https://github.com/sagiegurari/cargo-make
synced 2026-06-08 17:20:03 +00:00
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build",
|
|
"detail": "Build the rust project",
|
|
"type": "process",
|
|
"group": "build",
|
|
"command": "cargo",
|
|
"args": [
|
|
"make",
|
|
"build"
|
|
]
|
|
},
|
|
{
|
|
"label": "Clean",
|
|
"detail": "Clean the target build directory",
|
|
"type": "process",
|
|
"group": "build",
|
|
"command": "cargo",
|
|
"args": [
|
|
"make",
|
|
"clean"
|
|
]
|
|
},
|
|
{
|
|
"label": "Format",
|
|
"detail": "Auto format the code",
|
|
"type": "process",
|
|
"group": "build",
|
|
"command": "cargo",
|
|
"args": [
|
|
"make",
|
|
"format-flow"
|
|
]
|
|
},
|
|
{
|
|
"label": "Test",
|
|
"detail": "Run the tests",
|
|
"type": "process",
|
|
"group": "build",
|
|
"command": "cargo",
|
|
"args": [
|
|
"make",
|
|
"test-flow"
|
|
]
|
|
},
|
|
],
|
|
}
|