Bower hangs after checkout step of Install command. -


i'm github enterprise user , i'm using bower point internal repository manage dependencies.

i have set repo , included bower.json file in root directory. looks this:

{   "name": "axis",   "main": "axis.js",   "version": "0.0.0",   "authors": [     "nick randall"   ],   "description": "chart axis",   "keywords": [     "d3",     "d3.chart",     "axis"   ],   "license": "mit",   "ignore": [     "**/.*",     "node_modules",     "bower_components",     "test",     "tests"   ],   "dependencies": {     "d3": "~3.4.6",     "d3.chart": "~0.2.0",     "lodash": "~2.4.1"   } } 

i'm trying install repo above dependency in new project using "bower install org/axis" , process hangs after "checkout" step. doing wrong or bug?

my .bowerrc file looks this:

{   "shorthand-resolver": "https://git.company.com/{{owner}}/{{package}}'.git" } 

and response command line:

bower axis#*           not-cached https://git.company.com/org/axis.git#* bower axis#*           resolve https://git.company.com/org/axis.git#* bower axis#*           checkout v1.1.1 

after hangs there , never progresses.

about year ago, there issue bower hanging due problems version of unzip. see if hanging may have same cause might try install 1 of dependencies individually. if individual install doesn't hang may have same issue before -- occurred in presence of combinations of node version , bower version. try , load individually, consider example:

bower install https://github.com/lodash/lodash.git


Comments

Popular posts from this blog

java - Intellij Synchronizing output directories .. -

git - Initial Commit: "fatal: could not create leading directories of ..." -