IDE Support
VS Code
The Melos extension integrates Melos with VS Code.
melos.yaml
The extension provides validation and autocompletion of melos.yaml
and allows
you to run scripts through CodeLenses:
Melos scripts as tasks
Melos scripts are provided as VS Code tasks:
To configure a task that run a Melos script, use task type melos
:
// .vscode/tasks.json
{
"version": "2.0.0",
"tasks": [
{
"type": "melos",
"script": "test",
"label": "melos: test"
}
]
}