Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
60bed4cb1f | |||
8831a8d173 |
3
dist/mod02/index.js
vendored
3
dist/mod02/index.js
vendored
@ -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();
|
||||
})
|
||||
|
@ -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": {
|
||||
|
@ -32,7 +32,7 @@ let mocha = function (configArg: INpmtsConfig) {
|
||||
plugins.gulpInjectModules(),
|
||||
plugins.through2.obj(
|
||||
(file, enc, cb) => {
|
||||
cb(null, file)
|
||||
cb()
|
||||
},
|
||||
(cb) => {
|
||||
cb()
|
||||
|
Reference in New Issue
Block a user