Interested in exploring Yeoman and looking for information on updating a package.
I have initiated an Angular project:
yeoman init angular
The current version included in app/script/vendor
(also referenced in index.html
) is AngularJS v1.0.1
How can I upgrade to the latest version, AngularJS v1.0.2
.
While there is a command yeoman update
for updating packages installed through Yeoman, those are typically found in app/components
.
So, I have the following questions:
- Why are there separate folders named
vendor
andcomponents
. - What is the best way to upgrade Angular without disrupting Yeoman's dependency management system.
Appreciate any assistance on this matter.