npm install --save gulp-compile-twig
const twig_compile = require('gulp-compile-twig');
gulp.task('twig', () => {
gulp.src('./src/**/*.twig')
.pipe(twig_compile())
.pipe(gulp.dest('./dest/'))
});
The options object supports the module
and twig
options for the Twig compiler.
module
Should the output be written in module format. Supported formats:- node: Node.js / CommonJS 1.1 modules
- amd: RequireJS / Asynchronous modules (requires
twig
) - cjs2: CommonJS 2.0 draft8 modules (requires
twig
)
twig
Used with module. The location relative to the output directory of twig.js. (used for module dependency resolution).
const twig_compile = require('gulp-compile-twig');
gulp.task('twig', function() {
gulp.src('./src/**/*.twig')
.pipe(twig_compile({module: 'amd', twig: 'lib/twig'}))
.pipe(gulp.dest('./dest/'))
});