|
1 | 1 | --- |
2 | | - |
3 | 2 | <p align="center" class="toc"> |
4 | | - <strong><a href="#setup">Setup</a></strong> |
5 | | - | |
6 | | - <strong><a href="#running-lintingtests">Running linting/tests</a></strong> |
7 | | - | |
8 | | - <strong><a href="#writing-tests">Writing tests</a></strong> |
9 | | - | |
10 | | - <strong><a href="#debugging-code">Debugging code</a></strong> |
11 | | - | |
12 | | - <strong><a href="#internals">Internals</a></strong> |
| 3 | +<strong><a href="#setup">Setup</a></strong> |
| 4 | +| |
| 5 | +<strong><a href="#running-lintingtests">Running linting/tests</a></strong> |
| 6 | +| |
| 7 | +<strong><a href="#writing-tests">Writing tests</a></strong> |
| 8 | +| |
| 9 | +<strong><a href="#debugging-code">Debugging code</a></strong> |
| 10 | +| |
| 11 | +<strong><a href="#internals">Internals</a></strong> |
13 | 12 | </p> |
14 | | - |
15 | 13 | --- |
16 | 14 |
|
17 | 15 | # Contributing |
@@ -39,14 +37,14 @@ Feel free to check out the `#discussion`/`#development` channels on our [Slack]( |
39 | 37 |
|
40 | 38 | ## Developing |
41 | 39 |
|
42 | | -*Node*: Check that Node is [installed](https://nodejs.org/en/download/) with version `^12.16 || >= 14`. You can check this with `node -v`. |
| 40 | +_Node_: Check that Node is [installed](https://nodejs.org/en/download/) with version `^12.20 || >= 14.13`. You can check this with `node -v`. |
43 | 41 |
|
44 | | -*Yarn*: Make sure that Yarn 1 is [installed](https://classic.yarnpkg.com/en/docs/install) with version >= `1.19.0`. |
| 42 | +_Yarn_: Make sure that Yarn 1 is [installed](https://classic.yarnpkg.com/en/docs/install) with version >= `1.19.0`. |
45 | 43 |
|
46 | | -*Make*: If you are running Windows 10, you'll need to do one of the following: |
| 44 | +_Make_: If you are running Windows 10, you'll need to do one of the following: |
47 | 45 |
|
48 | | -* Clone the repository and run the commands inside [WSL 2](https://docs.microsoft.com/en-us/windows/wsl/install-win10). |
49 | | -* Install [Make for Windows](http://gnuwin32.sourceforge.net/packages/make.htm). |
| 46 | +- Clone the repository and run the commands inside [WSL 2](https://docs.microsoft.com/en-us/windows/wsl/install-win10). |
| 47 | +- Install [Make for Windows](http://gnuwin32.sourceforge.net/packages/make.htm). |
50 | 48 |
|
51 | 49 | ### Setup |
52 | 50 |
|
@@ -224,7 +222,12 @@ Other than normal Babel options, `options.json` can contain other properties to |
224 | 222 | ```jsonc |
225 | 223 | // options.json example |
226 | 224 | { |
227 | | - "plugins": [["@babel/plugin-proposal-object-rest-spread", { "useBuiltIns": "invalidOption" }]], |
| 225 | + "plugins": [ |
| 226 | + [ |
| 227 | + "@babel/plugin-proposal-object-rest-spread", |
| 228 | + { "useBuiltIns": "invalidOption" } |
| 229 | + ] |
| 230 | + ], |
228 | 231 | "throws": "@babel/plugin-proposal-object-rest-spread currently only accepts a boolean option for useBuiltIns (defaults to false)" |
229 | 232 | } |
230 | 233 | ``` |
|
0 commit comments