gulp-dust-2.7

4.0.0 • Public • Published

gulp-dust Build Status

Precompile Dust templates

Issues with the output should be reported on the Dust issue tracker.

Install

$ npm install --save-dev gulp-dust

Usage

const gulp = require('gulp');
const dust = require('gulp-dust');
 
gulp.task('default', () => {
    return gulp.src('templates/list.html')
        .pipe(dust())
        .pipe(gulp.dest('dist'));
});

API

dust([options])

options

name

Type: function
Default: Filename. Example: templates/list.html => list

You can override the default behavior by supplying a function which gets the current File object and is expected to return the name.

Example:

dust({
    name: file => 'custom'
});
config

Type: object
Default: {whitespace: false, amd: false, cjs: false}

Corresponds to dust.config. Use it to override any dust configuration value.

whitespace

Type: boolean
Default: false

Preserve whitespace.

amd

Type: boolean
Default: false

Compile as AMD modules.

cjs

Type: boolean
Default: false

Compile as CommonJS modules.

License

MIT © Sindre Sorhus

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 4.0.0
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 4.0.0
    1

Package Sidebar

Install

npm i gulp-dust-2.7

Weekly Downloads

1

Version

4.0.0

License

MIT

Last publish

Collaborators

  • sielay