@lsbjordao/type-taxon-script 1.1.1 → 1.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/package.json +1 -1
- package/readme.md +14 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lsbjordao/type-taxon-script",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"author": "Lucas Jordão <tucarj@gmail.com> & André Eppinghaus <andreeppinghaus@gmail.com> & Vicente Calfo <vicentecalfo@gmail.com>",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"description": "TypeTaxonScript",
|
package/readme.md
CHANGED
|
@@ -35,9 +35,21 @@ To open the TTS project directory in VS Code:
|
|
|
35
35
|
4. Click on the TTS project directory to select it.
|
|
36
36
|
5. Click the `Open` button.
|
|
37
37
|
|
|
38
|
-
## Installing
|
|
38
|
+
## Installing TypeScript (TS) globally
|
|
39
39
|
|
|
40
|
-
Within VS Code, open your terminal and execute the command
|
|
40
|
+
Within VS Code, open your terminal and execute the command bellow, following these steps:
|
|
41
|
+
|
|
42
|
+
1. Navigate to the top menu and select Terminal.
|
|
43
|
+
2. From the dropdown menu, choose New Terminal.
|
|
44
|
+
3. In the terminal, type and execute the following command:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
npm install -g type-taxon-script
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Installing TTS package globally
|
|
51
|
+
|
|
52
|
+
Within a terminal in VS Code, type and execute the following command:
|
|
41
53
|
|
|
42
54
|
1. Navigate to the top menu and select `Terminal`.
|
|
43
55
|
2. From the dropdown menu, choose `New Terminal`.
|