Skip to content

Commit 20669e9

Browse files
authored
chore: bump website deps (#13443)
1 parent 201b833 commit 20669e9

9 files changed

+394
-363
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
/packages/*/node_modules/
2222

2323
/website/.docusaurus
24+
/website/.cache-loader
2425
/website/build
2526
/website/backers.json
2627
/website/node_modules

.yarnrc.yml

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ packageExtensions:
1010
"@docsearch/react@*":
1111
dependencies:
1212
"@algolia/client-search": ^4.9.1
13+
"@svgr/core@*":
14+
peerDependencies:
15+
"@babel/core": ^7.1.6
1316
react-native-codegen@*:
1417
peerDependencies:
1518
"@babel/preset-env": ^7.1.6

website/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Jest website
22

3-
The Jest website is based on [Docusaurus 2](http://v2.docusaurus.io/).
3+
The Jest website is based on [Docusaurus 2](http://docusaurus.io/).
44

55
## Run the dev server
66

7-
You will need Node >=10.
7+
You will need Node >=14.
88

99
The first time, get all the dependencies loaded via
1010

website/babel.config.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/**
2+
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
8+
'use strict';
9+
10+
module.exports = {
11+
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
12+
};

0 commit comments

Comments
 (0)