asset-builder
asset-builder copied to clipboard
Adding bower package to a secondary file without having it removed from main?
How can I add a bower package to a secondary file without having it removed from the main file?
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.