@escover/formatter-responsive 1.0.0 → 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 +5 -5
- package/lib/responsive.js +1 -1
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# @escover/formatter-responsive [![License][LicenseIMGURL]][LicenseURL] [![NPM version][NPMIMGURL]][NPMURL] [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Coverage Status][CoverageIMGURL]][CoverageURL]
|
|
2
2
|
|
|
3
3
|
[NPMIMGURL]: https://img.shields.io/npm/v/@escover/formatter-responsive.svg?style=flat
|
|
4
|
-
[BuildStatusURL]: https://github.com/coderaiser
|
|
5
|
-
[BuildStatusIMGURL]: https://github.com/coderaiser
|
|
4
|
+
[BuildStatusURL]: https://github.com/coderaiser/escover/actions?query=workflow%3A%22Node+CI%22 "Build Status"
|
|
5
|
+
[BuildStatusIMGURL]: https://github.com/coderaiser/escover/workflows/Node%20CI/badge.svg
|
|
6
6
|
[LicenseIMGURL]: https://img.shields.io/badge/license-MIT-317BF9.svg?style=flat
|
|
7
7
|
[NPMURL]: https://npmjs.org/package/@escover/formatter-responsive "npm"
|
|
8
8
|
[LicenseURL]: https://tldrlegal.com/license/mit-license "MIT License"
|
|
9
|
-
[CoverageURL]: https://coveralls.io/github/coderaiser
|
|
10
|
-
[CoverageIMGURL]: https://coveralls.io/repos/coderaiser
|
|
9
|
+
[CoverageURL]: https://coveralls.io/github/coderaiser/escover?branch=master
|
|
10
|
+
[CoverageIMGURL]: https://coveralls.io/repos/coderaiser/escover/badge.svg?branch=master&service=github
|
|
11
11
|
|
|
12
12
|
## Install
|
|
13
13
|
|
|
@@ -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
|
|
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,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@escover/formatter-responsive",
|
|
3
|
-
"version": "1.0.
|
|
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",
|
|
7
7
|
"type": "module",
|
|
8
|
+
"tag": false,
|
|
9
|
+
"release": false,
|
|
10
|
+
"changelog": false,
|
|
8
11
|
"repository": {
|
|
9
12
|
"type": "git",
|
|
10
13
|
"url": "git+https://github.com/coderaiser/escover.git"
|