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
12
votes
2 answers

Bower install display prompt input message debian

I am getting a problem trying to execute a bower install on my project I am just executing bower install command on my debian OS but when this is recognizing the dependencies defined on my bower.json. its got stuck in a part that I dont…
jorgevasquezang
  • 1,008
  • 1
  • 9
  • 16
11
votes
4 answers

How to install Polymer iron-elements using bower?

How to install polymer iron and paper elements for Polymer 0.9 using bower? Tried using bower to install in a way similar to core-elements but fails. Migration guide doesn't provide any information on upgrading core/iron or paper elements. bower…
Akh
  • 5,961
  • 14
  • 53
  • 82
11
votes
6 answers

Bower Issue: bower_components not created

I've created a bower.json file in my project root but when I run: $ bower install I get the following output: bower not-cached https://github.com/mirceasinteanu/nanoScrollerJS.git#master bower resolve …
user1385827
  • 325
  • 1
  • 6
  • 23
11
votes
7 answers

“EMALFORMED Failed to read bower.json” "unexpected token /"

i rather new to mean stack and i'm trying to pull some components using bower. I have my .bowerrc file which gives the path for installation. //.bowerrc { "directory": "public/libs" } and i have my bower.json file which looks like this: //…
user2656851
  • 1,643
  • 4
  • 12
  • 15
11
votes
4 answers

How to resolve bower issue: "ENORESTARGET Tag/branch master does not exist"

I cannot seem to get bower working on my current project. The project began as a yeoman 'angular' app a couple weeks ago, and now cannot remember exactly what I did, nor can I determine how to fix it. I do not have a bower_components directory, and…
Zach Lysobey
  • 14,959
  • 20
  • 95
  • 149
11
votes
2 answers

Absolute path using grunt-wiredep for Grunt + Bower

The grunt-wiedep task outputs relative paths for assets. I instead need absolute paths. So, I reconfigured the replace block as suggested here: https://github.com/stephenplusplus/grunt-wiredep/issues/46 But, after specifying the replace block as…
Moon
  • 33,439
  • 20
  • 81
  • 132
9
votes
2 answers

fatal: unable to access 'https://github.com/gabelerner/canvg.git/': Peer reports incompatible or unsupported protocol version

I am facing this issue in jenkins when i run bower install --allow-root. The build fails displaying the following error: Failed to execute "git ls-remote --tags --heads https://github.com/gabelerner/canvg.git final build failure error displays as…
Z.T
  • 485
  • 1
  • 5
  • 8
9
votes
2 answers

How to install and use bower in windows 7

I'm a beginner in using bower and had searched all over the internet for installing the bower but couldn't find step by step method for installing the bower. If you please help me for this I shall be very thankful to everyone.
Muhammad
  • 116
  • 1
  • 1
  • 7
9
votes
2 answers

How to change bower-installer path for one component

I am using bower-installer to copy files I need from bower_components folder into bower_dist folder. Here is relevant part of bower.json file: "install": { "path": "bower_dist" }, "dependencies": { "jquery": "~2.1.4", "bootstrap":…
nikib3ro
  • 20,366
  • 24
  • 120
  • 181
9
votes
2 answers

Managing bower dependencies with ionic

After starting with a new ionic app, I can see at bower.json that comes with ionic is in devdependencies. Why is it a devdependency and not a normal dependency? "devDependencies": { "ionic": "driftyco/ionic-bower#1.0.0-rc.0" }, Thanks, I feel…
cor
  • 3,323
  • 25
  • 46
8
votes
3 answers

frontend-maven-plugin can't "bower install"

I have project with "web" module. In module I have "pom.xml" with frontend-maven-plugin: com.github.eirslett
Aleksandar
  • 636
  • 1
  • 7
  • 24
8
votes
2 answers

How do I configure bower with Visual Studio?

As complexity of my web project is growing, I am realizing that downloading external JavaScript libraries manually, is error prone, time consuming and making project less maintainable over time. Although Visual Studio has NuGet package manager, it…
8
votes
2 answers

bower not working in Visual Studio 2015 Preview

I am building a web application in Visual Studio 2015. I am behind corporate proxy. Installing packages via bower is not working. I tried the following workarounds. Created a .bowerrc file in the solution with the following settings. { "proxy":…
AnandhaSundari M
  • 1,098
  • 2
  • 10
  • 23
8
votes
1 answer

missing bower_components folder after bower install

In a personnal project, I ran this morning npm install && bower install after a svn checkout. All packages seem downloaded and installed with no errors, all fires are green. But after install, the bower_components folder still missing. I tested a…
Rémi Becheras
  • 14,902
  • 14
  • 51
  • 81
8
votes
1 answer

Bower install: No versions available

I successfully registered my own library into bower: bower register angular-ngkit https://github.com/daveoncode/angular-ngkit-bower.git and I'm able to install it using: bower install angular-ngkit But by using simply: bower install or bower info…
daveoncode
  • 18,900
  • 15
  • 104
  • 159
1
2
3
23 24