Working in mono-repo becomes really painful when installing additional dependencies in the project.
# cd ../../to/repo/root
$ npx rush unlink
# cd ./to/project/directory
$ npm install dependency
# cd ../../to/repo/root
$ npx rush update
Is there a better way to install dependency and not to do this repetitively?
rush already handles projects dependencies, why not adding an additional command that installs dependency in the selected project?
Working in mono-repo becomes really painful when installing additional dependencies in the project.
Is there a better way to install dependency and not to do this repetitively?
rush already handles projects dependencies, why not adding an additional command that installs dependency in the selected project?