提交 457fa64f 编写于 作者: R Rob Lourens

Fix hygiene

上级 d18b62e4
......@@ -87,11 +87,11 @@ function isTestTask(name: string): boolean {
return false;
}
function getNpmCommandLine(script:string): string {
function getNpmCommandLine(script: string): string {
if (vscode.workspace.getConfiguration('npm').get<boolean>('runSilent')) {
return `npm --silent run ${script}`;
}
return `npm run ${script}`
return `npm run ${script}`;
}
async function getNpmScriptsAsTasks(): Promise<vscode.Task[]> {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册