Compare commits

...

2 Commits

Author SHA1 Message Date
2a5583946c 5.3.23 2016-07-18 19:06:04 +02:00
80e36a34ee now using initial cwd for writing coverage reports 2016-07-18 19:06:00 +02:00
3 changed files with 3 additions and 3 deletions

2
dist/npmts.tests.js vendored
View File

@ -31,7 +31,7 @@ var mocha = function (configArg) {
.pipe(plugins.g.injectModules()) .pipe(plugins.g.injectModules())
.pipe(plugins.g.mocha()) .pipe(plugins.g.mocha())
.pipe(plugins.g.istanbul.writeReports({ .pipe(plugins.g.istanbul.writeReports({
dir: './coverage', dir: plugins.path.join(paths.cwd, "./coverage"),
reporters: ['lcovonly', 'json', 'text', 'text-summary'] reporters: ['lcovonly', 'json', 'text', 'text-summary']
})) }))
.pipe(plugins.g.gFunction(function () { .pipe(plugins.g.gFunction(function () {

View File

@ -1,6 +1,6 @@
{ {
"name": "npmts", "name": "npmts",
"version": "5.3.22", "version": "5.3.23",
"description": "write npm modules with TypeScript", "description": "write npm modules with TypeScript",
"main": "dist/index.js", "main": "dist/index.js",
"bin": { "bin": {

View File

@ -32,7 +32,7 @@ let mocha = function (configArg) {
.pipe(plugins.g.injectModules()) .pipe(plugins.g.injectModules())
.pipe(plugins.g.mocha()) .pipe(plugins.g.mocha())
.pipe(plugins.g.istanbul.writeReports({ .pipe(plugins.g.istanbul.writeReports({
dir: './coverage', dir: plugins.path.join(paths.cwd,"./coverage"),
reporters: [ 'lcovonly', 'json', 'text', 'text-summary'] reporters: [ 'lcovonly', 'json', 'text', 'text-summary']
})) }))
.pipe(plugins.g.gFunction(function(){ .pipe(plugins.g.gFunction(function(){