Vladimir Kapustin

Results 24 comments of Vladimir Kapustin

You should return the stream created by `clean`: ``` javascript gulp.task( 'ftp-clean', function () { var conn = ftp.create( ftpOptions ); return conn.clean( globs, local, { base: '.' } );...

Well, this makes the whole idea behind this plugin questionable. The completions look like a miracle, but snippets are an important part of my workflow.

I guess, this is the reason behind the issue https://github.com/sindresorhus/npm-name/issues/31

No, I meant template helpers (Handlebars helpers to be precise), but mistyped it. I corrected the title.

``` javascript //gulpfile task app.helper( 'test', options => options.data.root ); ``` ``` handlebars {{ log ( test 'test' ) }} ```

I rechecked and it seems the problem is in something else. I finished converting my helpers from legacy format. Now they are accessible without `helpers.` prefix. But somehow helpers do...

Well, the main cause of trouble is my lack of experience with Gulp, I guess. The error is thrown somewhere inside a loop in my template and the task just...

Another mystery for me here: ``` handlebars {{log data}} // prints out an object with a 'title' key {{log (get 'title' data)}} // a helper from assemble/handlebars-helpers, outputs a correct...

No, these 3 lines are at the beginning of the template. None of them is inside a loop or partial. Well, actually the whole template is a partial if it...

And data to this partial is passed from a helper. ``` handlebars {{> block-section data=(getContent block) }} ```