-
Notifications
You must be signed in to change notification settings - Fork 932
Closed
Description
Describe the Feature
upgrade command could use installPods helper, and run:
pod repo update
pod installafter installing JS deps.
Here's how init uses it:
cli/packages/cli/src/commands/init/init.js
Lines 164 to 166 in a3d468e
| if (process.platform === 'darwin') { | |
| await installPods({projectName, loader}); | |
| } |
It's likely that installPods will need another option introduced to decide whether update the pods or not. It's not necessary during init because all pods are local, but it's usually necessary when having 3rd party libraries. We can also be smart about it and check for presence of 3rd party RN libs by accessing config.dependencies.
cpojer, fson and lucasbentocpojer and ahmedu007