How to ignore source files in bower

I am using bower to install packages and manage dependencies. But bower uses git repos and it pulls in all package files. I don't need development in jquery

src files , but bower pushes everything out. also i need a bootstrap

pre-compiled version, but bower installs bootstrap with all sources.

What should I do to ignore source files or pull out minified versions?

+3


source to share


1 answer


The files that are checked out using the gazebo are determined by the owner of the package, not the tool. When saving the stand package, the owner can choose what to include / exclude from the distribution.
You can use bower-installer (not to be confused with installing bower), which is described as:



"A tool to install bauer dependencies that won't include the entire repo"

+2


source







All Articles