Compare commits

...

4 Commits

Author SHA1 Message Date
200f44a792 5.5.10 2016-11-25 13:42:53 +01:00
312dc4bd7f remove unnecessary logging 2016-11-25 13:42:46 +01:00
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 3 additions and 3 deletions

2
dist/mod02/index.js vendored
View File

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

View File

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

View File

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