Detail for npm: install task (#83765)

Fixes #83654
This commit is contained in:
Alex Ross 2019-11-01 15:26:58 +01:00 committed by GitHub
parent 58f74cf05d
commit 5a1242ab45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -253,7 +253,7 @@ async function provideNpmScriptsForFolder(packageJsonUri: Uri): Promise<Task[]>
result.push(task);
});
// always add npm install (without a problem matcher)
result.push(createTask('install', 'install', folder, packageJsonUri, undefined, []));
result.push(createTask('install', 'install', folder, packageJsonUri, 'install dependencies from package', []));
return result;
}