Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

sheetify-jstransformer

seangenabe4MIT1.0.0

jstransformer plugin for sheetify.

sheetify, css, plugin, transform

readme

sheetify-jstransform

jstransformer plugin for sheetify.

Usage

Example usage in browserify:

b.transform('sheetify/transform', {
  use: [
    'sheetify-jstransformer',
    {
      use: require('jstransformer-autoprefixer')
    }
  ]
})

Multiple transformers to apply serially to the source:

b.transform('sheetify/transform', {
  use: [
    'sheetify-jstransformer',
    {
      use: [
        require('jstransformer-less'),
        require('jstransformer-autoprefixer')
      ]
    }
  ]
})

Options

  • use: The transformer, or array of transformers, to use. Required.

    An element of or the single value of use may be:

    • A transformer instance
    • An array [transformer, opts, optsCb] with:
      • transformer - The transformer instance
      • opts - Options to pass to the transformer.
      • optsCb(opts, filename) - A function that can transform options to possibly incorporate the filename; return the new options to pass to the transformer. Default: identity function

See also