Compare commits

...

3 Commits

Author SHA1 Message Date
d98d035902 3.4.1 2016-03-12 10:26:53 +01:00
217af24d25 fixs some cosmetics 2016-03-12 10:26:42 +01:00
11c43f59d9 update devDeps 2016-03-12 10:23:32 +01:00
3 changed files with 4 additions and 6 deletions

2
dist/npmts.tests.js vendored
View File

@ -23,7 +23,7 @@ exports.run = function (configArg) {
var stream = plugins.gulp.src([plugins.path.join(paths.cwd, "./coverage/lcov.info")])
.pipe(plugins.g.coveralls())
.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"));
return stream;
};

View File

@ -1,6 +1,6 @@
{
"name": "npmts",
"version": "3.4.0",
"version": "3.4.1",
"description": "write npm modules with TypeScript",
"main": "dist/index.js",
"bin": {
@ -48,7 +48,5 @@
"smartpath": "2.1.0",
"source-map-support": "^0.4.0"
},
"devDependencies": {
"gulp-typings": "^1.1.0"
}
"devDependencies": {}
}

View File

@ -28,7 +28,7 @@ export var run = function(configArg) {
var stream = plugins.gulp.src([plugins.path.join(paths.cwd,"./coverage/lcov.info")])
.pipe(plugins.g.coveralls())
.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"));
return stream;
};