rollup-plugin-style
v0.1.0
Published
A style plugin for rollup.
Downloads
77
Readme
rollup-plugin-style
A style plugin for rollup.
use
...
plugins: [
...
style(options)
]
options
options.include Include file; default
['**/*.css']
options.exclude Exclude file; default
[]
options.output Output type;
style
,inline
,file
; defaultinline
.style
The style tag will be automatically generated and inserted into head.inline
Use forimport cssText from './xxx.css
.file
Output to file.
options.dest Output file dir.
options.compile = async (code, extname) => {} Compiler handler support.