You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-25Lines changed: 18 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -5,16 +5,29 @@ and CI/CD.
5
5
6
6
# Gilded Rose Refactoring Kata
7
7
8
-
Today's workshop is based on a popular refactoring exercise you can find out more about [here](https://github.com/emilybache/GildedRose-Refactoring-Kata/tree/main).
8
+
Today's workshop is based on a popular refactoring exercise you can find out more about [here](https://github.com/emilybache/GildedRose-Refactoring-Kata/tree/main).
9
9
10
10
# Setup
11
11
12
12
We recommend using [Intellij](https://www.jetbrains.com/idea/download/) as the IDE.
13
13
14
+
You might also have to install [nvm-windows](https://github.com/coreybutler/nvm-windows) if you are running on Windows.
15
+
14
16
You will have to install [Node](https://nodejs.org/en/download/package-manager) v18.20. This should also install `npm`,
15
-
which is a Node packet manager
17
+
which is a Node packet manager.
18
+
19
+
You don't need to run this in a virtual machine.
20
+
21
+
You might also have to install [ts-node](https://www.npmjs.com/package/ts-node#installation), after you get Node.
16
22
17
-
# Getting started
23
+
```
24
+
# Locally in your project.
25
+
npm install -D typescript
26
+
27
+
npm install -D ts-node
28
+
```
29
+
30
+
# Getting started
18
31
19
32
**First, fork this repository and clone it on your device.**
20
33
@@ -38,11 +51,11 @@ To run all tests in watch mode:
38
51
39
52
You can run the application seeing how the `updateQuality()` function works:
0 commit comments