Skip to content

Commit 468c8aa

Browse files
authored
formatted docs/README.md for easy copy (#3295)
1 parent fb8ee7a commit 468c8aa

File tree

1 file changed

+30
-6
lines changed

1 file changed

+30
-6
lines changed

docs/README.md

+30-6
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,14 @@ First time using Node.js? You may want to start with the [tutorial](tutorial.md)
3737

3838
First install Node.js >= 18 from [nodejs.org](https://nodejs.org/) then:
3939

40-
`npm install mineflayer`
40+
```bash
41+
npm install mineflayer
42+
```
4143

42-
To update mineflayer (or any Node.js) package and its dependencies, use `npm update --depth 9999`
44+
To update mineflayer (or any Node.js) package and its dependencies, use
45+
```bash
46+
npm update --depth 9999
47+
```
4348

4449
## Documentation
4550

@@ -248,17 +253,36 @@ The most updated and useful are :
248253

249254
### Testing everything
250255

251-
Simply run: `npm test`
256+
Simply run:
257+
258+
```bash
259+
npm test
260+
```
252261

253262
### Testing specific version
254-
Run `npm run mocha_test -- -g <version>`, where `<version>` is a minecraft version like `1.12`, `1.15.2`...
263+
Run
264+
265+
```bash
266+
npm run mocha_test -- -g <version>
267+
```
268+
269+
where `<version>` is a minecraft version like `1.12`, `1.15.2`...
255270

256271
### Testing specific test
257-
Run `npm run mocha_test -- -g <test_name>`, where `<test_name>` is a name of the test like `bed`, `useChests`, `rayTrace`...
272+
Run
273+
274+
```bash
275+
npm run mocha_test -- -g <test_name>
276+
```
277+
278+
where `<test_name>` is a name of the test like `bed`, `useChests`, `rayTrace`...
258279

259280
### Example
260281

261-
`npm run mocha_test -- -g "1.18.1.*BlockFinder"` to run the block finder test for 1.18.1
282+
```bash
283+
npm run mocha_test -- -g "1.18.1.*BlockFinder"
284+
```
285+
to run the block finder test for 1.18.1
262286

263287
## License
264288

0 commit comments

Comments
 (0)