You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
npm and yarn are two JavaScript package managers that can be used in a very similar manner. Both use the file package.json as a dependency manifest, but have different lock files. You would use npm if there is a package-lock.json file in the project, and yarn if there is a yarn.lock file in the project. I think JavaScript exercises have neither of those files, which means you can just choose which package manager you prefer.
In the Resistor Duo exercise on the TypeScript track the install instructions say 'npm install' and 'npm test'. I believe it should say yarn.
The text was updated successfully, but these errors were encountered: