@escover/formatter-responsive 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -22,5 +22,5 @@ ESCOVER_FORMAT='responsive' escover npm test
22
22
  ```
23
23
 
24
24
  ## License
25
- MIT
26
25
 
26
+ MIT
package/lib/responsive.js CHANGED
@@ -12,7 +12,7 @@ export default (coverageFile, {skipFull = false} = {}) => {
12
12
  const files = parseCoverageFile(coverageFile, skipFull);
13
13
 
14
14
  if (skipFull && !files.length)
15
- return '💪 coverage 100% Good Job!\n';
15
+ return '💪 coverage 100%, good job!\n';
16
16
 
17
17
  const totalWidth = process.stdout.columns || 80;
18
18
  const showPercent = totalWidth >= 70;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@escover/formatter-responsive",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "Istanbul converter",
6
6
  "exports": "./lib/responsive.js",