Skip to content
This repository has been archived by the owner on Nov 22, 2021. It is now read-only.

Commit

Permalink
chore(grunt): Add Boostrap files to the compress task
Browse files Browse the repository at this point in the history
  • Loading branch information
mbenford committed Aug 21, 2014
1 parent a1702e6 commit 5fc066e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions grunt/options/compress.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ module.exports = {
files : [
{
expand: true,
src : ['<%= files.js.outMin %>', '<%= files.css.main.outMin %>'],
src : [
'<%= files.js.outMin %>',
'<%= files.css.main.outMin %>',
'<%= files.css.bootstrap.outMin %>'
],
flatten: true
}
]
Expand All @@ -21,7 +25,11 @@ module.exports = {
files : [
{
expand: true,
src : ['<%= files.js.out %>', '<%= files.css.main.out %>'],
src : [
'<%= files.js.out %>',
'<%= files.css.main.out %>',
'<%= files.css.bootstrap.out %>'
],
flatten: true
}
]
Expand Down

0 comments on commit 5fc066e

Please sign in to comment.