I have 2 github project. Let's say one is "mylibrary" and other is "test-project"
I have linked "mylibary" in "test-project" as GitHub URL. So the package.json looks like below.
dependencies: {
"mylibrary": "git+ssh://[email protected]/user/mylibrary.git"
}
When I do npm install, "mylibrary" is getting downloaded and placed inside "node_modules"
But the clone version of my library doesn't have package-lock.json
ls node_modules/mylibrary | grep package-lock
yields no results
Any help would be great. Thanks.