0.1.0 • Published 10 years ago

gulp-twig-compile v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

gulp-twig-compile

Build Status

Information

Usage

var twig_compile = require('gulp-twig-compile');

gulp.task('twig', function() {
  gulp.src('./src/**/*.twig')
    .pipe(twig_compile())
    .pipe(gulp.dest('./dest/'))
});

Options

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).

var twig_compile = require('gulp-twig-compile');

gulp.task('twig', function() {
  gulp.src('./src/**/*.twig')
    .pipe(twig_compile({module: 'amd', twig: 'lib\twig'}))
    .pipe(gulp.dest('./dest/'))
});