Questions tagged [bower-install]

Bower is a package manager for the web.

Bower is a package manager for the web. It offers a generic, unopinionated solution to the problem of front-end package management, while exposing the package dependency model via an API that can be consumed by a more opinionated build stack. There are no system wide dependencies, no dependencies are shared between different apps, and the dependency tree is flat.

Bower runs over Git, and is package-agnostic. A packaged component can be made up of any type of asset, and use any type of transport (e.g., AMD, CommonJS, etc.).

Home: http://bower.io/

351 questions
3
votes
1 answer

grunt bower-install puts script tags in wrong order

I'm using grunt and yeoman in an AngularJS application. grunt version is 0.4.5. When I run "grunt bower-install" it changes the order of the script tags in my index.html, and the new order is wrong:
mvermand
  • 5,829
  • 7
  • 48
  • 74
3
votes
1 answer

bower ECMDERR Failed to execute git ls-remote --tags,

I'm new to bower and git, and i got this error when I ran bower install command in my AngularJs project directory: bower ECMDERR Failed to execute git ls-remote --tags, I tried most popular solution such as: git config --global…
3
votes
2 answers

how to install highcharts with bower

I am starting a new Ember-CLI project. And I want to install HighCharts with bower. How do I do this? I have read two posts about this. The first one tells me to:bower install highcharts.com Unfortunately the install hangs and eventually…
Grapho
  • 1,654
  • 15
  • 33
3
votes
1 answer

How I can prevent bower from downloading the whole repo

I just need the .min files, but it downloads the whole repo and it's very big. This is my bower.json { "name": "blah", "version": "0.0.0", "dependencies": { "backbone": "~1.0.0", "underscore": "~1.4.4", "jquery": "~1.9.1", …
Noampz
  • 1,185
  • 3
  • 11
  • 19
2
votes
0 answers

TypeError: a is not a function in AngularJS on Modal Pop-up Issue

Whenever I am opening the Modal Pop-up, I am getting the TypeError on console and after that entire screen gets stuck/Freeze. I have to refresh the page every time after I open the Modal popup. Error I am getting: TypeError: a is not a function …
2
votes
2 answers

Git Repository bower install (terminal prompts disabled)

I try to do bower install for my project but it throws following error ECMDERR Failed to execute "git ls-remote --tags --heads https://github.com/functino/jquery-ui-touch-punch.git", exit code of #128 fatal: could not read Username for…
srivat1
  • 111
  • 3
  • 11
2
votes
3 answers

Bower install with angular-cli webpack

Please is it advisable and best practice to use bower components within my angular CLI project(angular4) with webpack when the project is already build on node modules.
Lekens
  • 1,823
  • 17
  • 31
2
votes
2 answers

bower in VS2017 is not working

When I using bower manager to install 'animate' package, There is an exception: EMALFORMED Failed to read C:\Users\Frank\AppData\Local\Temp\FRANK-PC-Frank\bower\a2a424217f809672e8fe80ddeab36781-21084-Ho4ioc\bower.json Additional error…
2
votes
0 answers

Rangeslider.js does not install

I am trying to install and use the rangeslider.js API, I have downloaded the latest version and I have gone about installing it via the terminal using both npm and bower install commands. When I try the npm install, i get the following error: npm…
Brian
  • 287
  • 4
  • 16
2
votes
1 answer

Gitlab public runner won't run bower because run in sudo

How can I run bower command without sudo using gitlab public runner? This is my script image: node:7 before_script: - npm install -g bower - bower install ... This is the result I got from the test. ... npm info ok $ bower install bower ESUDO …
2
votes
2 answers

Is there a way to use polymer's elements without the use of node. Js npm and bower?

I want to know if it is possible to download some library from a link where from i can include the elements (polymer's) to my html file? Or somehow install Polymer without bower of npm from node.js?
2
votes
1 answer

Bower - Give different path to a registered package

I have my own cloned git repository. (I'll use cloned jquery to simplify) I want to be able to link a Registered package name to a given path so I could do this: "jquery": "1.0.0" I know it is possible to just give the path, i.e bower…
Asaf Savich
  • 623
  • 1
  • 9
  • 29
2
votes
0 answers

Bower does not install the latest version of angular-bootstrap

I have noticed that I've been using angular-bootstrap 0.14.3 on a project and when I tried to find out the reason, I couldn't. My bower.json is as follows: { "name": "app", "version": "0.0.0", "dependencies": { "bootstrap": "", …
George Nikolaides
  • 1,386
  • 12
  • 21
2
votes
1 answer

Unable to find a suitable version for angular installing UI-GRID

I'm installing ui-grid via bower but I get the following error. What is it? What I have to do? What I have to answer in terminal? Unable to find a suitable version for angular, please choose one: 1) angular#>=1 <1.3.0 which resolved to 1.2.29 and is…
panagulis72
  • 2,129
  • 6
  • 31
  • 71
2
votes
2 answers

Custom paths for package managers like Nuget/npm/bower/typings

I'm setting up a project in Visual Studio based on AngularJS and Typescript and it's a bit discouraging that I have to deal with yet another package manager as soon as I need to install dependencies. The issue I have is that package managers require…
Alexander Efimov
  • 2,685
  • 3
  • 18
  • 22