Skip to content

Latest commit

 

History

History
32 lines (29 loc) · 489 Bytes

installation.md

File metadata and controls

32 lines (29 loc) · 489 Bytes

Installation

Using with other postCSS plugins

{
  "plugins": {
    "metalsmith-sense-sass": {
      "postcss": {
        "plugins": {
          "postcss-import": {},
          "postcss-cssnext": {}
        }
      }
    }
  }
}
var ms = new Metalsmith(__dirname)
  .source('src')
  .destination('public')
  .use(require('metalsmith-sense-sass')({
    postcss: {
      plugins: {
        'postcss-import': {},
        'postcss-cssnext': {}
      }
    }
  }))