VSCode extension which validates yarn.lock or package-lock.json file and
notifies if install step needs to run.
When changes are pulled from remote origin, we may forget to run install
step. This extension listens for changes in yarn.lock or package-lock.json
and validates in the background against node_modules. Prompts to run
install step.
Add the below setting corresponding to repo type
.vscode/settings.json config for NPM / Yarn:
{
"npm.packageManager": "npm" / "yarn"
}
The setting is automatically added if there is a conflict with
repo and default package manager.