@jawish/rollup-plugin-twig
v0.0.1
Published
Rollup plugin to import Twig templates as a compiled function.
Downloads
1
Readme
rollup-plugin-twig
Rollup plugin that pre-compiles Twig.js templates.
Installation
NPM:
npm install --save-dev rollup-plugin-twig
Yarn:
yarn add --dev rollup-plugin-twig
Usage
Update rollup.config.js
:
import { rollup } from 'rollup';
import strip from 'rollup-plugin-twig';
export default {
input: 'src/index.js',
output: [
{
format: 'cjs',
file: 'dist/my-lib.cjs.js'
}
],
plugins: [
twig()
]
};
Create your Twig template files *.twig
. e.g.:
<div>{{ name }}</div>
Import your Twig templates where needed. e.g:
import template from './template.twig'
const data = { name: 'John Doe' }
console.log(template.render(data)) // <div>John Doe</div>
Options
Plugin options you can pass :
include
Minimatch or array of minimatch with files that should be included by default.exclude
Minimatch or array of minimatch with files that should be excluded by default.minify
Minify the template usinghtml-minifier
. Default:true
.minifyOptions
Options to configurehtml-minifier
. Default options:
{
removeComments: true,
collapseWhitespace: true,
collapseBooleanAttributes: true,
decodeEntities: true,
html5: true,
keepClosingSlash: true,
minifyCSS: true,
minifyJS: true,
minifyURLs: true,
}
License
MIT License