Questions tagged [bower]

Bower is a package manager for the web. Bower lets you easily install assets such as images, CSS and JavaScript, and manages dependencies for you.

Bower is an open source package manager for the web. Bower lets you easily install assets such as images, and , and manages dependencies for you. Assets can be any type of component, and any type of transport can be used.

3166 questions
1
vote
1 answer

Using npm for front-end dependecie or am I misunderstanding something?

I use the Roots/Sage wordpress starter theme, which uses npm, gulp and bower. I wan't to use the blueimp gallery in my theme. Earlier I installed it with bower, but the new version of Bluimp/Gallery does not have bower.json file, and the creator of…
Koli
  • 197
  • 2
  • 16
1
vote
1 answer

What is the difference between ~ and ^ in bower.json?

I have this bower.json file. { "name": "angular-seed", "description": "A starter project for AngularJS", "version": "0.0.0", "homepage": "https://github.com/angular/angular-seed", "license": "MIT", "private": true, "dependencies": { …
guagay_wk
  • 26,337
  • 54
  • 186
  • 295
1
vote
1 answer

Should bower packages in Ionic project work on IOS?

I added two bower packages (angular-md5 and angular-momentjs) to my Ionic project. They work great in Chrome but don't work at all in the iOS Simulator. I'm not exactly sure the proper way to debug these types of issues in the Simulator, if they'd…
robbymarston
  • 344
  • 3
  • 16
1
vote
0 answers

Make NPM search in both private and public registry

In Bower I can do the following within a .bowerrc file to search multiple registries for a module: "registry": { "search": [ "https://private/repo/name", "https://bower.herokuapp.com" ] }, Is there a similar way of how this…
magicode118
  • 1,444
  • 2
  • 17
  • 26
1
vote
1 answer

Include bower component in Ember Addon

How do you need to work in an Ember addon, to include bower packages while installing the addon. 1) I installed the bower package I want to include in my addon with bower instal packagename --save 2) then in my addon, in the root, edited index.js,…
pjcarly
  • 416
  • 3
  • 12
1
vote
0 answers

Front-end project in Visual Studio 2015

I have a pure front-end project (folder) using the following technologies: gulp (with gulpfile.js and gulpfile.config.js) bower npm TypeScript (compiled with gulp using npm package 'gulp-typescript') and configured with a tsconfig.json file. the…
enenkey
  • 1,261
  • 3
  • 16
  • 27
1
vote
0 answers

How to prevent bower to install some dependencies

I am using bower for the first time. I installed bootstrap but it pulled jquery with it, but I don't want it to be pulled as I load it in another way. I tried to add ignore dependency but it installs it again: { "name": "myapp", "private":…
1110
  • 7,829
  • 55
  • 176
  • 334
1
vote
1 answer

Using webpack, how can I get the unminified version of a bower component?

I am using webpack, and it is bundling files from bower_components. I want to use the non-minified version of a library, not the minified version. How can I force webpack to do this? [Edit] The library in question is mithril.js. I know this can be…
Mnebuerquo
  • 5,759
  • 5
  • 45
  • 52
1
vote
0 answers

Polymer 1.0 Dependencies Conflict

I have a jQuery dependency on my web component written in Polymer 1.0. What happens if the user has a different version of jQuery installed? (e.g. the WC needs 1.9 and user has 2.2 installed, or vice versa) jQuery's structural hierarchy is changed…
Omri Aharon
  • 16,959
  • 5
  • 40
  • 58
1
vote
0 answers

ASP.NET Core: Bower packages contains .cs files that break my application

I'm using the Bower package globalize in a project, and that Bower package contains a generator .NET program that of course includes .cs. files. When I go to compile my app, it's trying to compile not only my custom code but also the globalize C#…
Peder Rice
  • 1,764
  • 3
  • 28
  • 51
1
vote
1 answer

Ubuntu: Error: EACCES, permission denied error while using bower to install

I am installing bower using the following command... sudo npm install -g bower and get the following... npm http GET https://registry.npmjs.org/bower npm http 304 https://registry.npmjs.org/bower /usr/local/bin/bower ->…
Erik Åsland
  • 9,542
  • 10
  • 30
  • 58
1
vote
1 answer

Requirements for ZURB Foundation 6

What are the requirements for ZURB Foundation 6? The docs are not clear: http://foundation.zurb.com/sites/docs/sass.html They say: To get started, first install the framework files using Bower or npm. cd projectname npm install bower…
Steve
  • 155
  • 1
  • 6
1
vote
1 answer

How to fix this error : You must provide a Middleman::Extension or a block that returns a Middleman::Extension (RuntimeError)?

I am new to Middleman and to Ruby. I have installed rvm first: command curl -sSL https://rvm.io/mpapis.asc | gpg2 --import - \curl -L https://get.rvm.io | bash -s stable --ruby I added ~/.rvm/bin in the PATH, then installed Ruby with rvm: rvm…
lalebarde
  • 1,684
  • 1
  • 21
  • 36
1
vote
3 answers

bower install - Cannot find module 'q'

I'm using node v5.6.0 and bower 1.7.7 on a Mac. I've done a npm install in my project folder which installs all the /node_modules including q. I've also done a npm install -g q just to see if that helped. But as soon as I run bower install (or…
Andreas Larsen
  • 101
  • 3
  • 10
1
vote
1 answer

How do I load assets from npm/bower using a gulp-based asset pipeline with Rails? (ripped out sprockets)

I have taken out Sprockets and went with Gulp for managing assets. I use npm and bower for package management, both of which tie into Gulp for moving to /public/assets/. I'm used to sprockets' manifest requires with //= in app.(css|js). How would I…
Copywright
  • 31
  • 3