0.0.1 • Published 7 years ago

mat-mcss v0.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
7 years ago

mat-mcss

Installation

npm install --save-dev mat-mcss

Basic Usage

var mat   = require('mat')
var mcss = require('mat-mcss')
var autoprefixer = require('mat-autoprefixer')

mat.task('mcss', function () {
  mat.url([/.*\.css/])
    .rewrite([
      [/\.css/g, '.mcss']
    ])
    .use(mcss())
    .use(autoprefixer({
      browsers: ['last 2 versions'],
      cascade: false
    }))
})

Options

See the Mcss options.