How I can prevent bower from downloading the whole repo
Asked Answered
S

1

3

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",
    "backbone.localStorage": "~1.1.0",
    "bootstrap": "",
    "requirejs": "",
    "mustache": "",
    "hammerjs": ""
    }
}
Shamrock answered 10/4, 2014 at 12:50 Comment(0)
B
5

Bower is deliberately not opinionated about the content of packages, so it does not give you that kind of control, it just downloads the whole thing.

The idea is that you would then use a build system or task runner (such as Grunt) to perform tasks like minification or compilation as a second step.

Beisel answered 10/4, 2014 at 12:59 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.