Created
March 6, 2015 18:57
-
-
Save ronnyhartenstein/7d592e9174a5ed412e15 to your computer and use it in GitHub Desktop.
OXID Bootstrap Responsive: Grunt csswring
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function (grunt, options) { | |
return { | |
options: { | |
report: "gzip", | |
removeAllComments: true, | |
preserveHacks: true | |
}, | |
vendor: { | |
src: [ | |
'./out/azure/src/css/libs/jscrollpane.css', | |
'./bower_components/bootstrap/dist/css/bootstrap.css', | |
'./bower_components/fontawesome/css/font-awesome.css', | |
'./out/meinshop/src/css/prettyPhoto.css' | |
], | |
dest: './out/meinshop/src/css/vendor.css' | |
} | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment