From 04a6bc9ceaf2df8b49fda81f410c8f59657e3d7b Mon Sep 17 00:00:00 2001 From: stdavis Date: Tue, 13 Oct 2020 11:37:30 -0600 Subject: [PATCH 1/2] docs(website): add step for fetching backers.json Supercedes: #10191 Fixes: #9808 --- CONTRIBUTING.md | 1 + website/README.md | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 971973cefc70..ae76536aa041 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -143,6 +143,7 @@ If you are making changes to the website or documentation, test the website fold ```sh-session $ cd website # Only needed if you are not already in the website directory $ yarn + $ node fetchSupporters.js $ yarn start ``` 1. You can run a development server to check if the changes you made are being displayed accurately by running `yarn start` in the website directory. diff --git a/website/README.md b/website/README.md index ebfd2df11c40..b8a0c49f0724 100644 --- a/website/README.md +++ b/website/README.md @@ -10,6 +10,12 @@ yarn in the root directory. +Fetch `backers.json` file by running + +```bash +node fetchSupporters.js +``` + Then, run the server via ```bash From 0e62f727702f450a82eb418a1e33a4fae4073cd2 Mon Sep 17 00:00:00 2001 From: stdavis Date: Tue, 13 Oct 2020 11:43:45 -0600 Subject: [PATCH 2/2] chore: add change log entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31c286e796e2..aa6b581532d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ### Features +- `[docs]` Add step for fetching `backers.json` file in website setup docs ([#10631](https://github.com/facebook/jest/pull/10631)) - `[jest-cli, jest-config]` Add support for the `jest.config.ts` configuration file ([#10564](https://github.com/facebook/jest/pull/10564)) ### Fixes