@guritso/terminal 1.0.4 → 1.0.5
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/LICENSE +3 -3
- package/README.md +6 -6
- package/package.json +5 -5
package/LICENSE
CHANGED
|
@@ -631,8 +631,8 @@ to attach them to the start of each source file to most effectively
|
|
|
631
631
|
state the exclusion of warranty; and each file should have at least
|
|
632
632
|
the "copyright" line and a pointer to where the full notice is found.
|
|
633
633
|
|
|
634
|
-
|
|
635
|
-
Copyright (C)
|
|
634
|
+
@guri/terminal enhanced terminal logging for node apps
|
|
635
|
+
Copyright (C) 2024 Guritso
|
|
636
636
|
|
|
637
637
|
This program is free software: you can redistribute it and/or modify
|
|
638
638
|
it under the terms of the GNU General Public License as published by
|
|
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
|
|
|
652
652
|
If the program does terminal interaction, make it output a short
|
|
653
653
|
notice like this when it starts in an interactive mode:
|
|
654
654
|
|
|
655
|
-
@guri/terminal Copyright (C) 2024
|
|
655
|
+
@guri/terminal Copyright (C) 2024 Guritso
|
|
656
656
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
657
657
|
This is free software, and you are welcome to redistribute it
|
|
658
658
|
under certain conditions; type `show c' for details.
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @guritso/terminal
|
|
2
2
|
|
|
3
3
|
A terminal node utility for logging and error handling.
|
|
4
4
|
|
|
@@ -8,14 +8,14 @@ A terminal node utility for logging and error handling.
|
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
11
|
-
To install the package
|
|
11
|
+
To install the package:
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npm install
|
|
14
|
+
npm install @guritso/terminal
|
|
15
15
|
# or
|
|
16
|
-
pnpm install
|
|
16
|
+
pnpm install @guritso/terminal
|
|
17
17
|
# or
|
|
18
|
-
yarn add @
|
|
18
|
+
yarn add @guritso/terminal
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
@@ -23,7 +23,7 @@ yarn add @guri/terminal@github:GuriTsuki/terminal
|
|
|
23
23
|
To use the package, import it into your project:
|
|
24
24
|
|
|
25
25
|
```javascript
|
|
26
|
-
import terminal from '@
|
|
26
|
+
import terminal from '@guritso/terminal';
|
|
27
27
|
// Setup the terminal (this is necessary to use the console.error function)
|
|
28
28
|
terminal.setup();
|
|
29
29
|
// Start the terminal with a your project's specific host and port ( both are optional) its only used for the project info
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guritso/terminal",
|
|
3
3
|
"description": "A terminal node utility for logging and error handling",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"license": "GPL-3.0",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/
|
|
13
|
+
"url": "git+https://github.com/guritso/terminal.git"
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
16
|
"terminal",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"cli",
|
|
20
20
|
"utility"
|
|
21
21
|
],
|
|
22
|
-
"author": "
|
|
22
|
+
"author": "GuriTso",
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"jest": "^29.7.0"
|
|
25
25
|
},
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"types": "./index.d.ts",
|
|
30
30
|
"bugs": {
|
|
31
|
-
"url": "https://github.com/
|
|
31
|
+
"url": "https://github.com/guritso/terminal/issues"
|
|
32
32
|
},
|
|
33
|
-
"homepage": "https://github.com/
|
|
33
|
+
"homepage": "https://github.com/guritso/terminal#readme"
|
|
34
34
|
}
|