The new API looks like this:
bower_concat: {
main: {
dest: {
js: 'build/_bower.js',
scss: 'build/_bower.scss,
coffee: 'build/_bower.coffee
},
// ...
}
}
The old dest
as a string ({dest: 'build/_bower.js'}
) is still working but the cssDest
was removed.
Thanks @alwin-rewedigital, #65.
- Update peerDependencies to be able to work with Grunt 1.0.
- Cmpatibility with Bower dependencies without any .js or .css main file (#55, by @frontday).
- process options (by @Keyes).
- separator option (by @epferrari).
- includeDev option (by @VincentBiragnet).
- Ability to override main file if it was specified in package’s bower.json (by @cetra3).
- Pretty output of files which will be concatenated in verbose mode (by @vstukanov).
- CSS support (by @kevinschaul).
- Fix undefined
canonicalDir
for packages withoutbower.json
(#29).
- Use Bower in offline mode (fix #20). Do not require internet and faster.
- Bug fixes.
callback
option.- Fix path duplication when
relative
isfalse
inbowerOptions
(#15).
- Respect
cwd
option of.bowerrc
(by @philippbosch).
- Fix bad path passed as a main file in the bower.json (by @kaseyq).
mainFiles
option.- Do not treat components with
.js
in name as files (#11). - Supports multiple JS files in
bower.json
’smain
section (by @seanhess). - Other bug fixes.
- Respect component dependencies when ordering the files for concatination (by @swissmanu).
bowerOptions
option (by @madzak).
- Rename task to prevent conflicts with other Bower related tasks.
- Bug fixes.
- Initial release.