node.js - npm shrinkwrap resolved tarballs to the http://127.0.0.1:5080 url -
i have run npm shrinkwrap
of dependencies resolve http://127.0.0.1:5080
instead of npm registry. what's going on here? because npm install
not work these set.
here's excerpt:
"jsprim": { "version": "1.3.1", "from": "jsprim@>=1.2.2 <2.0.0", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.3.1.tgz", "dependencies": { "extsprintf": { "version": "1.0.2", "from": "extsprintf@1.0.2", "resolved": "http://127.0.0.1:5080/tarballs/extsprintf/1.0.2.tgz" }, "json-schema": { "version": "0.2.3", "from": "json-schema@0.2.3", "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz" }, "verror": { "version": "1.3.6", "from": "verror@1.3.6", "resolved": "http://127.0.0.1:5080/tarballs/verror/1.3.6.tgz" } } },
why these set http://127.0.0.1:5080? how can fix this?
the install works if replace these following:
http://127.0.0.1:5080/tarballs/(.+)/(.+).tgz https://registry.npmjs.org/$1/-/$1-$2.tgz
Comments
Post a Comment