rollup-plugin-riot
v10.0.0
Published
Rollup plugin for Riot.js
Downloads
1,973
Readme
Rollup Plugin for Riot
Compiles tag files within rollup processes.
Important
If you are using Riot.js < 4.0.0 please check the v3 branch
Installation
npm install rollup-plugin-riot @riotjs/compiler -DRequires @riotjs/compiler > 4.x.x and Rollup v1.x.x or above.
Usage
import riot from 'rollup-plugin-riot'
export default {
input: 'src/main.js',
output: {
file: 'dist/bundle.js',
},
plugins: [riot()],
}Options
You can specify some options:
import riot from 'rollup-plugin-riot'
const options = {
ext: 'html',
}
export default {
input: 'src/main.js',
output: {
file: 'dist/bundle.js',
},
plugins: [riot(options)],
}ext: extension of tag file (default is 'riot')include: a minimatch pattern for including files.exclude: a minimatch pattern for excluding files.
And other options of @riotjs/compiler could be used.
Recipes
- https://github.com/riot/examples/tree/gh-pages/rollup
