Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
d98d035902 | |||
217af24d25 | |||
11c43f59d9 |
2
dist/npmts.tests.js
vendored
2
dist/npmts.tests.js
vendored
@ -23,7 +23,7 @@ exports.run = function (configArg) {
|
|||||||
var stream = plugins.gulp.src([plugins.path.join(paths.cwd, "./coverage/lcov.info")])
|
var stream = plugins.gulp.src([plugins.path.join(paths.cwd, "./coverage/lcov.info")])
|
||||||
.pipe(plugins.g.coveralls())
|
.pipe(plugins.g.coveralls())
|
||||||
.pipe(plugins.g.gFunction(function () {
|
.pipe(plugins.g.gFunction(function () {
|
||||||
plugins.beautylog.ok("coverage data has beend uploaded Coveralls!");
|
plugins.beautylog.ok("Tests have passed and coverage data has been uploaded to Coveralls!");
|
||||||
}, "atEnd"));
|
}, "atEnd"));
|
||||||
return stream;
|
return stream;
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "3.4.0",
|
"version": "3.4.1",
|
||||||
"description": "write npm modules with TypeScript",
|
"description": "write npm modules with TypeScript",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
@ -48,7 +48,5 @@
|
|||||||
"smartpath": "2.1.0",
|
"smartpath": "2.1.0",
|
||||||
"source-map-support": "^0.4.0"
|
"source-map-support": "^0.4.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {}
|
||||||
"gulp-typings": "^1.1.0"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@ export var run = function(configArg) {
|
|||||||
var stream = plugins.gulp.src([plugins.path.join(paths.cwd,"./coverage/lcov.info")])
|
var stream = plugins.gulp.src([plugins.path.join(paths.cwd,"./coverage/lcov.info")])
|
||||||
.pipe(plugins.g.coveralls())
|
.pipe(plugins.g.coveralls())
|
||||||
.pipe(plugins.g.gFunction(function(){
|
.pipe(plugins.g.gFunction(function(){
|
||||||
plugins.beautylog.ok("coverage data has beend uploaded Coveralls!");
|
plugins.beautylog.ok("Tests have passed and coverage data has been uploaded to Coveralls!");
|
||||||
},"atEnd"));
|
},"atEnd"));
|
||||||
return stream;
|
return stream;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user