asset-builder icon indicating copy to clipboard operation
asset-builder copied to clipboard

Adding bower package to a secondary file without having it removed from main?

Open christianmagill opened this issue 9 years ago • 1 comments

How can I add a bower package to a secondary file without having it removed from the main file?

--- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/36156436-adding-bower-package-to-a-secondary-file-without-having-it-removed-from-main?utm_campaign=plugin&utm_content=tracker%2F8853550&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F8853550&utm_medium=issues&utm_source=github).

christianmagill avatar Jul 19 '16 13:07 christianmagill

on the secondary file include the bower js in a vendor object

...
"secondary.js": {
    "vendor": [
        "../bower_components/package/package.js"
    ]
},
...

this works for js files but does not want to work for css files.

eballeste avatar Jul 06 '17 20:07 eballeste