yutotnh / spirit

モータードライバ用ライブラリ
https://yutotnh.github.io/spirit/
MIT License
2 stars 2 forks source link

Feature: ビルドタスクのgroup kindを適切な値にする #226

Open yutotnh opened 1 year ago

yutotnh commented 1 year ago

なぜ機能が欲しいのか

.vscode/tasks.jsongroup:kindbuildtestと記載すると、下の画像のようにまとめて実行するコマンドをトリガーにして実行される

今までは意識していなかった(知らなかった)ので各タスクを整理し、テストタスクとして必要なものはtestに、ビルドタスクとして必要なタスクはbuildにする

当てはまらないものはnoneにする

        {
            "label": "Doxygen",
            "type": "shell",
            "dependsOn": [
                "Doxygen: Developper build",
                "Doxygen: Genaral users build"
            ],
            "problemMatcher": [],
            "group": {
                "kind": "build",
                "isDefault": false
            },
            "detail": "全てのDoxygen関連のタスクを実行する"
        },

image

提案の説明

その他

タスクに関するページ