New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-jade-inheritance

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-jade-inheritance - npm Package Compare versions

Comparing version

to
0.0.3

test/fixtures/fixture5.jade

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 @@

2

package.json
{
"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) {