nero-review 0.1.0 → 0.1.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 +8 -8
- package/dist/printer/PrettyPrinter.js +0 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,21 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
<h1 align="center">nero-review</h1>
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
<p align="center">
|
|
6
6
|
<img src="https://img.shields.io/npm/v/nero-review?color=6366f1" alt="npm version" />
|
|
7
|
-
<img src="https://img.shields.io/npm/dm/nero-review?color=0f172a" alt="npm downloads" />
|
|
7
|
+
<!-- <img src="https://img.shields.io/npm/dm/nero-review?color=0f172a" alt="npm downloads" /> -->
|
|
8
8
|
<img src="https://img.shields.io/github/license/alcanivorax/nero-review?color=22c55e" alt="license" />
|
|
9
|
-
</p>
|
|
9
|
+
</p>
|
|
10
10
|
|
|
11
11
|
<br />
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
<p align="center">
|
|
14
14
|
<img
|
|
15
|
-
src="https://raw.githubusercontent.com/alcanivorax/nero-review/main/assets/nero-review-preview.
|
|
16
|
-
alt="nero-review
|
|
17
|
-
width="
|
|
15
|
+
src="https://raw.githubusercontent.com/alcanivorax/nero-review/main/assets/nero-review-preview.gif"
|
|
16
|
+
alt="nero-review demo"
|
|
17
|
+
width="800"
|
|
18
18
|
/>
|
|
19
|
-
</p>
|
|
19
|
+
</p>
|
|
20
20
|
|
|
21
21
|
<br />
|
|
22
22
|
|
|
@@ -13,10 +13,6 @@ export class PrettyPrinter {
|
|
|
13
13
|
this.printFooter(review.footer);
|
|
14
14
|
}
|
|
15
15
|
printHeader(review, truncated) {
|
|
16
|
-
console.log();
|
|
17
|
-
console.log(theme.divider(this.width - 27));
|
|
18
|
-
console.log(theme.header("Nero Review"));
|
|
19
|
-
console.log(theme.divider(this.width - 27));
|
|
20
16
|
console.log();
|
|
21
17
|
if (truncated) {
|
|
22
18
|
console.log(theme.title("Note: File is large. Review is based on partial content."));
|