shannonmoeller / gulp-hb

A sane Gulp plugin to compile Handlebars templates. Useful as a static site generator.

Home Page:http://npm.im/gulp-hb

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing helper when function defined in gulpfile.

andeersg opened this issue · comments

Hi,

I have a problem when I try to define a helper inside the gulpfile:

gulp.task('test', function () {
    return gulp
        .src('pages/*.hbs')
        .pipe(hb({
            data: 'testing/*.{js,json}',
            helpers: {
              lower: function (text) {
                return String(text).toLowerCase();
              }
            },
            partials: 'partials/**/*.hbs'
        }))
        .pipe(extname())
        .pipe(gulp.dest('dist2/'));
});

If I run this I get the following error: Error: Missing helper: "lower".

Both partials and data works.

Well that's no good. Looks like there's an error in my tests that's allowing bleed-through from one test to another. I'm on it. Thanks!

Fixed and released as v2.6.0.

Awesome :)