简体   繁体   中英

Install NPM package as Git clone

I'm working on a project that is using one of my own libraries as a dependency. I'm still making lots of changes to my library and therefore I want to require my library as a Git clone.

From the NPM Install documentation get the impression that this is possible [1] but when I add my dependency and I run an npm install the dependency is added without any of the Git information I require.

"dependencies": {
  "mylib": "bitbucket:acme/mylib#dev-master"
},

How can I make NPM do a Git clone in my node_modules directory rather then just getting the files?

[1] https://docs.npmjs.com/cli/install

You can check this answer , and modify it for your repo. It works for almost all cases.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM