fix(curriculum): correct spelling 'mangers' → 'managers' in lecture (#61989)

This commit is contained in:
Sonu
2025-08-29 22:46:36 +05:30
committed by GitHub
parent 1ef3cc1e7a
commit f0bc3a62b7
@@ -65,7 +65,7 @@ Another important aspect of the `package.json` file are the dev dependencies:
Dev dependencies are packages that are only used for development and not in production. An example of this would be a testing library like Jest. You would install Jest as a dev dependency because you only use it to test your project locally, and isn't needed for the application to run in production.
For the majority of this lecture, we have been focusing on npm. But there are other package mangers like yarn and pnpm. So which package manager should you use for your project?
For the majority of this lecture, we have been focusing on npm. But there are other package managers like yarn and pnpm. So which package manager should you use for your project?
Well, the short answer is it depends.