Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
demurgos committed Dec 27, 2017
1 parent ebd2c6e commit 0391910
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
"repository": "https://github.com/pugjs/gulp-pug.git",
"dependencies": {
"fancy-log": "^1.3.2",
"object-assign": "^4.1.0",
"object-assign": "^4.1.1",
"plugin-error": "^0.1.2",
"pug": ">=2.0.0-alpha <3",
"replace-ext": "^1.0.0",
"through2": "^2.0.0"
"through2": "^2.0.3"
},
"files": [
"index.js",
Expand All @@ -30,12 +30,12 @@
},
"license": "MIT",
"devDependencies": {
"eslint-config-google": "^0.5.0",
"eslint-config-google": "^0.6.0",
"eslint-config-xo": "^0.14.1",
"gulp": "^3.9.1",
"gulp-cli": "^2.0.0",
"gulp-eslint": "^2.0.0",
"tap": "^1.3.1",
"gulp-eslint": "^2.1.0",
"tap": "^11.0.1",
"vinyl": "^2.1.0"
}
}
21 changes: 11 additions & 10 deletions test/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@ var file = new Vinyl({
});

test('should compile a pug template with a custom pug instance with filters',
function(t) {
var stream = task(options);
stream.on('data', function(newFile) {
t.ok(newFile);
t.ok(newFile.contents);
t.equal(newFile.contents.toString(), 'HELLO, TESTER!!!!');
t.end();
});
stream.write(file);
});
function(t) {
var stream = task(options);
stream.on('data', function(newFile) {
t.ok(newFile);
t.ok(newFile.contents);
t.equal(newFile.contents.toString(), 'HELLO, TESTER!!!!');
t.end();
});
stream.write(file);
}
);

0 comments on commit 0391910

Please sign in to comment.