@arve.knudsen/sheetify-jstransformer

2.1.0 • Public • Published

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

Package Sidebar

Install

npm i @arve.knudsen/sheetify-jstransformer

Weekly Downloads

2

Version

2.1.0

License

MIT

Unpacked Size

4.17 kB

Total Files

5

Last publish

Collaborators

  • arve.knudsen