Compare commits

...

2 Commits

Author SHA1 Message Date
60bed4cb1f 5.5.9 2016-11-25 13:19:02 +01:00
8831a8d173 empty Buffer at end of transpilation 2016-11-25 13:18:59 +01:00
3 changed files with 4 additions and 3 deletions

3
dist/mod02/index.js vendored
View File

@ -26,7 +26,8 @@ let mocha = function (configArg) {
plugins.gulpSourcemaps.write(),
plugins.gulpInjectModules(),
plugins.through2.obj((file, enc, cb) => {
cb(null, file);
console.log(file);
cb();
}, (cb) => {
cb();
})

View File

@ -1,6 +1,6 @@
{
"name": "npmts",
"version": "5.5.8",
"version": "5.5.9",
"description": "Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.",
"main": "dist/index.js",
"bin": {

View File

@ -32,7 +32,7 @@ let mocha = function (configArg: INpmtsConfig) {
plugins.gulpInjectModules(),
plugins.through2.obj(
(file, enc, cb) => {
cb(null, file)
cb()
},
(cb) => {
cb()