Skip to content

Commit

Permalink
Fixing #48456 always include npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
egamma committed Apr 26, 2018
1 parent 6b82f92 commit cb982ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/npm/src/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ async function provideNpmScriptsForFolder(packageJsonUri: Uri): Promise<Task[]>
result.push(task);
});
// always add npm install (without a problem matcher)
// result.push(createTask('install', 'install', rootPath, folder, []));
result.push(createTask('install', 'install', folder, packageJsonUri, []));
return result;
}

Expand Down

0 comments on commit cb982ca

Please sign in to comment.