Comparing version 2.1.4 to 2.2.0
@@ -19,3 +19,3 @@ #!/usr/bin/env node | ||
.usage('$0 [command] [options]\n\nrun with a file as the first argument, to instrument it with coverage') | ||
.command('report', 'run coverage report on nyc_output', function (yargs) { | ||
.command('report', 'run coverage report for .nyc_output', function (yargs) { | ||
yargs | ||
@@ -22,0 +22,0 @@ .option('r', { |
## Change Log | ||
### v2.2.0 (2015/05/25 21:05 +00:00) | ||
- [b2e4707](https://github.com/bcoe/nyc/commit/b2e4707ca16750fe274f61039baf1cabdd6b0149) change location of nyc_output to .nyc_output. Added note about coveralls comments. (@sindresorhus) | ||
### v2.1.3 (2015/05/25 06:30 +00:00) | ||
@@ -4,0 +7,0 @@ - [376e328](https://github.com/bcoe/nyc/commit/376e32871d2d65ca31e7d8ba691293ac3ba6117e) handle corrupt JSON files in nyc_output (@bcoe) |
@@ -17,3 +17,3 @@ /* global __coverage__ */ | ||
), | ||
tempDirectory: './nyc_output', | ||
tempDirectory: './.nyc_output', | ||
cwd: process.env.NYC_CWD || process.cwd(), | ||
@@ -20,0 +20,0 @@ reporter: 'text', |
{ | ||
"name": "nyc", | ||
"version": "2.1.4", | ||
"version": "2.2.0", | ||
"description": "a code coverage tool that works well with subprocesses.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -13,3 +13,3 @@ # nyc | ||
Simply run your tests with `nyc`, and it will collect coverage information for | ||
each process and store it in `nyc_output`: | ||
each process and store it in `.nyc_output`: | ||
@@ -122,1 +122,4 @@ ```shell | ||
That's all there is to it! | ||
_Note: by default coveralls.io adds comments to pull-requests on GitHub, this can | ||
feel intrusive. To disable this, click on your repo on coveralls.io and uncheck `LEAVE COMMENTS?`._ |
@@ -141,3 +141,3 @@ /* global describe, it */ | ||
fs.writeFileSync('./nyc_output/bad.json', '}', 'utf-8') | ||
fs.writeFileSync('./.nyc_output/bad.json', '}', 'utf-8') | ||
@@ -144,0 +144,0 @@ proc.on('close', function () { |
Sorry, the diff of this file is not supported yet
21850
124