私は Visual Studio 2017 で Mads Kristensen の Command Task Runner 拡張機能を使用して、同僚の JS 作業を操作する際に役立てています。ファイルをセットアップしましたcommands.json
。これを使用して、彼の作品をリントおよびビルドします。
{
"commands": {
"chat-lint": {
"fileName": "powershell.exe",
"workingDirectory": "./Scripts/Chat",
"arguments": "-Command yarn run lint:fix"
},
"chat-build": {
"fileName": "powershell.exe",
"workingDirectory": "./Scripts/Chat",
"arguments": "-Command yarn run build"
}
},
"-vs-binding": {
"BeforeBuild": [],
"AfterBuild": []
}
}
1 つのステップ内で 2 つのコマンドを実行できるようにしたいと考えています。つまり、タスク内で のyarn install
前に実行します。 それは可能ですか、それを行うにはファイルを作成する必要がありますか? 2 つのコマンドを連続して実行できれば素晴らしいと思います。yarn run build
"chat-build"
.ps1