Skip to content

Commit 45f6535

Browse files
committed
Add TLDR contributing guidance
Supercedes #385. Closes #373.
1 parent 1861dae commit 45f6535

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

README.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,41 @@ The following external libraries can be automatically downloaded and compiled fr
422422
423423
## Contributing
424424
425-
See the [contributing guidelines][stdlib-contributing].
425+
First time contributor?
426+
427+
- See the [contributing guidelines][stdlib-contributing].
428+
429+
Already an expert?
430+
431+
- Fork the repository.
432+
433+
- Clone the forked repository
434+
435+
```bash
436+
$ git clone --depth=1 https://github.com/<username>/stdlib.git
437+
```
438+
439+
where `<username>` is your GitHub username.
440+
441+
- Navigate to the `stdlib` directory
442+
443+
```bash
444+
$ cd stdlib
445+
```
446+
447+
- Install dependencies
448+
449+
```bash
450+
$ make install-node-modules
451+
```
452+
453+
- Initialize your stdlib development environment
454+
455+
```bash
456+
$ make init
457+
```
458+
459+
* * *
426460
427461
## License
428462

0 commit comments

Comments
 (0)