Skip to content
This repository has been archived by the owner on May 25, 2019. It is now read-only.

Commit

Permalink
add map option in autoprefixer task so that sourceMappingURL is not r…
Browse files Browse the repository at this point in the history
…emoved
  • Loading branch information
gaboesquivel committed Nov 17, 2014
1 parent 3146961 commit 58cb3b9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/templates/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,11 @@ module.exports = function (grunt) {
// Add vendor prefixed styles
autoprefixer: {
options: {
browsers: ['> 1%', 'last 2 versions', 'Firefox ESR', 'Opera 12.1']
browsers: ['> 1%', 'last 2 versions', 'Firefox ESR', 'Opera 12.1']<% if (includeSass) { %>,
map: {
prev: '.tmp/styles/'
}
<% } %>
},
dist: {
files: [{
Expand Down

1 comment on commit 58cb3b9

@brunowego
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Please sign in to comment.