generator-scratch
Version:
Scratch is a starter theme generator based on _s and Foundation. It's a theme meant for hacking so don't use it as a Parent Theme. Instead try turning it into the next, most awesome, WordPress theme out there.
25 lines (24 loc) • 439 B
JavaScript
module.exports = {
/**
* grunt-postcss
*
* Apply several post-processors to your CSS using PostCSS
*
* @link https://www.npmjs.com/package/grunt-postcss
*/
dev: {
options: {
// @todo need to figure out how to remove maps for build
map: true,
processors: [
require( 'pixrem' )(),
require( 'autoprefixer' )(
{
browsers: ['last 2 versions']
}
)
]
},
src: ['assets/css/*.css']
}
};