Skip to content

Commit

Permalink
fixup! feat(tools): implement react-library generator
Browse files Browse the repository at this point in the history
  • Loading branch information
Hotell committed Jul 18, 2023
1 parent 13d9247 commit ae24a19
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/generators/react-library/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ export default async function (tree: Tree, schema: ReactLibraryGeneratorSchema)
await formatFiles(tree);

return () => {
installPackagesTask(tree);
installPackagesTask(
tree,
// we need to always run it to properly link yarn workspaces with newly created package
true,
);
};
}

Expand Down

0 comments on commit ae24a19

Please sign in to comment.