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
Import node modules with command yarn or yarn install or make install
Uses package.json for installing packages
Install specific packages as needed with yarn add <package>
Install Angular CLI with yarn global add @angular/cli
Notes:
Commit/keep yarn.lock file as it changes. package.json defines the intended versions of dependencies while the lock files keep track of the most recently used versions.
You shouldn't have a package-lock.json, because this corresponds to the npm package manager and our Frontend uses yarn as its package manager.