By default, if minSrc files are specified and no useMin option is defined, minSrc should be used over src file.
For example, with no NODE_ENV defined, the following bundle.config.js will use jquery.min.js and bootstrap.css. It should use bootstrap.min.css instead.
module.exports = {
bundle: {
vendor: {
scripts: {
src: './bower_components/jquery/dist/jquery.js',
minSrc: './bower_components/jquery/dist/jquery.min.js'
},
styles: {
src: './bower_components/bootstrap/dist/css/bootstrap.css',
minSrc: './bower_components/bootstrap/dist/css/bootstrap.min.css'
}
}
}
}