Skip to content

Commit 5d86a73

Browse files
authored
feat: migrate-to-yarn - Added Yarn supporting (#2)
1 parent 4000597 commit 5d86a73

File tree

4 files changed

+6979
-11460
lines changed

4 files changed

+6979
-11460
lines changed

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,29 +33,70 @@ git clone https://github.com/vtereshyn/react-typescript-eslint-starter.git
3333

3434
### Install
3535

36+
With Yarn:
37+
38+
```sh
39+
yarn
40+
```
41+
42+
With NPM:
43+
3644
```sh
3745
npm i
3846
```
3947

4048
### Development mode
4149

50+
With Yarn:
51+
52+
```sh
53+
yarn dev
54+
```
55+
56+
With NPM:
57+
4258
```sh
4359
npm run dev
4460
```
4561

4662
### Run linters
4763

64+
With Yarn:
65+
66+
```sh
67+
yarn lint
68+
```
69+
70+
With NPM:
71+
4872
```sh
4973
npm run lint
5074
```
5175

76+
5277
#### Fix lint issues
5378

79+
With Yarn:
80+
81+
```sh
82+
yarn lint-fix
83+
```
84+
85+
With NPM:
86+
5487
```sh
5588
npm run lint-fix
5689
```
5790

5891
### Build project
92+
With Yarn:
93+
94+
```sh
95+
yarn build
96+
```
97+
98+
With NPM:
99+
59100
```sh
60101
npm run build
61102
```

0 commit comments

Comments
 (0)