Skip to content

Commit

Permalink
Merge pull request #80 from visionappscz/feature/add-css-source-maps
Browse files Browse the repository at this point in the history
Set postcss option map to true to generate css source maps. Fixes #70
  • Loading branch information
adamkudrna authored Aug 1, 2016
2 parents ddb7cf8 + ea515e7 commit 41400b6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
5 changes: 3 additions & 2 deletions dist/css/bootstrap-ui.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/css/bootstrap-ui.css.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions dist/css/bootstrap-ui.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/css/bootstrap-ui.min.css.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions grunt/postcss.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module.exports = {

core: {
options: {
map: true,
processors: [
require('autoprefixer')(),
],
Expand All @@ -12,6 +13,7 @@ module.exports = {
},
'core-min': {
options: {
map: true,
processors: [
require('cssnano')({
autoprefixer: false,
Expand All @@ -25,6 +27,7 @@ module.exports = {
},
styleguide: {
options: {
map: true,
processors: [
require('autoprefixer')(),
require('cssnano')({
Expand Down

0 comments on commit 41400b6

Please sign in to comment.