@arve.knudsen/sheetify-jstransformer
v2.1.0
Published
jstransformer plugin for sheetify.
Downloads
8
Maintainers
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 instanceopts
- 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
- jstransformer-sheetify - The other way around.