Bower issue when deploying to heroku custom git module -
running deployment build failure when using bower on heroku.
this post install step:
gem install sass && bower install && brunch build --production
however, bower fails install package specified git url , not version.
the following package specification causes issue.
"bootstrap-offcanvas": "git://github.com/yagudaev/bootstrap-offcanvas.git#master"
heroku complains not being able retrieve right revision install bower component. (you have first set heroku config:set npm_config_loglevel=verbose
see it).
try specifying reversion directly avoid revision resolution attempts so:
"bootstrap-offcanvas": "git://github.com/yagudaev/bootstrap-offcanvas.git#d7249875c049b6cce3c8fbdbda9d7b8ced296030"
also avoid using:
git@github.com:yagudaev/bootstrap-offcanvas#master
it seems fail on heroku, may work locally.
Comments
Post a Comment