Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6b7e0ea

Browse filesBrowse files
committed
Changed lockfile to npm
1 parent f6a86c6 commit 6b7e0ea
Copy full SHA for 6b7e0ea

File tree

1 file changed

+10
-10
lines changed
Filter options

1 file changed

+10
-10
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
## Quickstart
44

55
```sh
6-
# Installs all dependencies
7-
yarn install
6+
# Installs all dependenciesG
7+
npm install
88

99
# Starts the first exercise
10-
yarn exercise 01
10+
npm run exercise 01
1111

1212
# Runs linting and tests on the solution
13-
yarn solution 01
13+
npm run solution 01
1414
```
1515

1616
## Video Walkthrough
@@ -24,7 +24,7 @@ You'll notice that the course is split into exercises. Each exercise is split in
2424
To take an exercise:
2525

2626
1. Go into `*.problem.ts`
27-
2. Run `yarn exercise 01`, where `01` is the number of the exercise you're on.
27+
2. Run `npm run exercise 01`, where `01` is the number of the exercise you're on.
2828

2929
The `exercise` script will run TypeScript typechecks and a test suite on the exercise.
3030

@@ -38,22 +38,22 @@ You'll know if you've succeeded because the tests will pass.
3838

3939
**If you succeed**, or **if you get stuck**, unpause the video and check out the `*.solution.ts`. You can see if your solution is better or worse than mine!
4040

41-
You can run `yarn solution 01` to run the tests and typechecking on the solution.
41+
You can run `npm run solution 01` to run the tests and typechecking on the solution.
4242

4343
## Acknowledgements
4444

4545
Say thanks to Matt on [Twitter](https://twitter.com/mattpocockuk) or by joining his [Discord](https://discord.gg/8S5ujhfTB3). Consider signing up to his [Total TypeScript course](https://totaltypescript.com).
4646

4747
## Reference
4848

49-
### `yarn exercise 01`
49+
### `npm run exercise 01`
5050

51-
Alias: `yarn e 01`
51+
Alias: `npm run e 01`
5252

5353
Run the corresponding `*.problem.ts` file.
5454

55-
### `yarn solution 01`
55+
### `npm run solution 01`
5656

57-
Alias: `yarn s 01`
57+
Alias: `npm run s 01`
5858

5959
Run the corresponding `*.solution.ts` file. If there are multiple, it runs only the first one.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.