Skip to content

Commit

Permalink
Build main with different precision to theme.
Browse files Browse the repository at this point in the history
  • Loading branch information
benschwarz committed Apr 16, 2013
1 parent f0464be commit a7258f1
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,20 @@ module.exports = function(grunt) {
tasks: ['sass']
},
sass: {
dist: {
main: {
options: {
style: 'expanded',
precision: 1
},
files: {
'dist/<%= pkg.name %>.css': 'sass/<%= pkg.name %>.build.scss'
}
},
theme: {
options: {
style: 'expanded'
},
files: {
'dist/<%= pkg.name %>.css': 'sass/<%= pkg.name %>.build.scss',
'dist/<%= pkg.name %>.theme.css': 'sass/<%= pkg.name %>.theme.scss'
}
}
Expand Down

0 comments on commit a7258f1

Please sign in to comment.