How do I omit a package from being included in my yarn.lock file?
问题 So in my package.json I have a bunch of npm libs, and one private repo being pulled in from a git ssh url which needs to always be the latest build. The yarn.lock adds the git sha and yarn upgrade etc won't grab the newest one. Basically, given this: "dependencies": { "some-package" : "^0.x.x", "some-other-package" : "*", "my-private-git-repo" : "git+ssh://git@bitbucket.org/me/myrepo.git", "lastlibrary" : "^4.0.3" }, I want yarn.lock or npm shrinkwrap to ignore my-private-git-repo Is this