feat(grunt): add autoprefix with postcss

closes #4250
This commit is contained in:
bergquist
2016-03-07 17:48:09 +01:00
parent a6c6b00d7e
commit b912edbbef
6 changed files with 36 additions and 46 deletions

View File

@ -2,7 +2,16 @@
module.exports = function(grunt) {
'use strict';
grunt.registerTask('css', ['sass', 'concat:cssDark', 'concat:cssLight', 'styleguide', 'sasslint']);
grunt.registerTask('css', [
'sass',
'concat:cssDark',
'concat:cssLight',
'styleguide',
'sasslint',
'postcss'
]
);
grunt.registerTask('default', [
'jscs',
'jshint',