gulp-jade-inheritance
Advanced tools
Comparing version
20
index.js
@@ -34,11 +34,15 @@ 'use strict'; | ||
function endStream() { | ||
vfs.src(files) | ||
.pipe(es.through( | ||
function (f) { | ||
stream.emit('data', f); | ||
}, | ||
function () { | ||
stream.emit('end'); | ||
} | ||
if (files.length) { | ||
vfs.src(files) | ||
.pipe(es.through( | ||
function (f) { | ||
stream.emit('data', f); | ||
}, | ||
function () { | ||
stream.emit('end'); | ||
} | ||
)); | ||
} else { | ||
stream.emit('end'); | ||
} | ||
} | ||
@@ -45,0 +49,0 @@ |
{ | ||
"name": "gulp-jade-inheritance", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "Rebuild only changed jade files and all it dependencies", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -70,2 +70,22 @@ var pluginPath = '../index'; | ||
it('empty jade', function(done) { | ||
var fixture = getFixtureFile('fixture5.jade') | ||
var files = []; | ||
var stream = plugin(); | ||
stream | ||
.on('data', function (file) { | ||
files.push(file); | ||
}) | ||
.once('end', function() { | ||
expect(files).to.have.length(0); | ||
done(); | ||
}); | ||
stream.write(fixture); | ||
stream.end(); | ||
}); | ||
describe('custom basedir', function(done) { | ||
@@ -72,0 +92,0 @@ it('wrong path', function(done) { |
5967
8.25%11
10%146
14.96%