Skip to content

Commit

Permalink
fix(expo): remove --force for install for yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
xiongemi committed Sep 25, 2024
1 parent 7f4c39e commit e1e66c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/expo/src/executors/install/install.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ export async function installAndUpdatePackageJson(
? options.packages.split(',')
: options.packages ?? [];

// Use force in case there are any unmet peer dependencies.
await installAsync(packages, createInstallOptions(options), ['--force']);
await installAsync(packages, createInstallOptions(options));

const projectRoot =
context.projectsConfigurations.projects[context.projectName].root;
Expand Down

0 comments on commit e1e66c7

Please sign in to comment.