Thursday, 13 April 2017

npm install is partially cloning the source from git repo

When I run npm i command it partially clones the code from bitbucket repo. Here are some dependencies in package.json

"dependencies": {
   "bluerain-app-hello-world": "git+ssh://git@bitbucket.org/projects/bluerain-app-hello-world.git#build_issue",
   "graphql-tag": "0.1.16" }

And this is the source of my module enter image description here

But when i list down cloned rope from node_module by

ls node_modules/bluerain-app-hello-world/

It gives this list

index.js  node_modules  package.json  README.md  src

There is a dist folder in my source but it didnt clone properly. I tried to remove my node modules and reinstall it but it didnt work. Any suggestions please?



via dev123

No comments:

Post a Comment