I use Yarn to install the dependencies of my project. What is equivalent to "npm install --save" in Yarn to update an entry in my package.json
file? I can use "npm install -save" here, but I want to use yarn as much as possible to improve performance and avoid confusion between npm and yarn.
source share