Ad
Npm Install Ignores Own Ssh+git Repo
In my company we use a Bitbucket server and I am developing a framework as npm module. I run npm install git+ssh://git...
, npm will create a node_modules/_PACKAGE_NAME_
folder with my sources.
When I add it to the package.json
and run npm install
, npm asks me for a fingerprint and then finishes installing all packages, but in node_modules
there is no package of my git repo. That breaks my automation workflow, because I must separately install this repo by hand.
For information: I have to type my password when I run it manually.
Does anyone have an idea?
Ad
Answer
it was a spelling mistake in the key, so npm could not create the folder
Ad
source: stackoverflow.com
Related Questions
- → Maximum call stack exceeded when instantiating class inside of a module
- → Browserify api: how to pass advanced option to script
- → Node.js Passing object from server.js to external modules?
- → gulp-rename makes copies, but does not replace
- → requiring RX.js in node.js
- → Remove an ObjectId from an array of objectId
- → Can not connect to Redis
- → React: How to publish page on server using React-starter-kit
- → Express - better pattern for passing data between middleware functions
- → Can't get plotly + node.js to stream data coming through POST requests
- → IsGenerator implementation
- → Async/Await not waiting
- → (Socket.io on nodejs) Updating div with mysql data stops without showing error
Ad