File tree 13 files changed +2953
-1186
lines changed
13 files changed +2953
-1186
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ jobs:
10
10
steps :
11
11
- uses : actions/checkout@v1
12
12
13
- - name : Use Node.js 10
13
+ - name : Use Node.js 12.13
14
14
uses : actions/setup-node@v1
15
15
with :
16
- node-version : 10
16
+ node-version : 12.13
17
17
18
18
- name : Restore yarn cache
19
19
id : yarn-cache
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
13
13
steps :
14
14
- uses : actions/checkout@v1
15
15
16
- - name : Use Node.js 10
16
+ - name : Use Node.js 12.13
17
17
uses : actions/setup-node@v1
18
18
with :
19
- node-version : 10
19
+ node-version : 12.13
20
20
21
21
- name : Restore yarn cache
22
22
id : yarn-cache
Original file line number Diff line number Diff line change @@ -146,8 +146,8 @@ module.exports = {
146
146
'@docusaurus/preset-classic' ,
147
147
{
148
148
docs : {
149
- docLayoutComponent : require . resolve ( './src/layouts/DocPage.js' ) ,
150
- docItemComponent : require . resolve ( './src/layouts/DocItem.js' ) ,
149
+ docLayoutComponent : require . resolve ( './src/pages/ layouts/DocPage.js' ) ,
150
+ docItemComponent : require . resolve ( './src/pages/ layouts/DocItem.js' ) ,
151
151
editUrl :
152
152
'https://github.com/react-navigation/react-navigation.github.io/edit/main/' ,
153
153
remarkPlugins : [ require ( './src/plugins/remark-npm2yarn' ) ] ,
Original file line number Diff line number Diff line change 2
2
base = " /"
3
3
publish = " build"
4
4
command = " yarn install && yarn build"
5
+
6
+ [build .environment ]
7
+ NODE_VERSION = " 12.13"
Original file line number Diff line number Diff line change 12
12
"fetch-sponsors" : " node scripts/fetch-sponsors.js"
13
13
},
14
14
"dependencies" : {
15
- "@docusaurus/core" : " ^2.0.0-alpha.66 " ,
15
+ "@docusaurus/core" : " ^2.0.0-alpha.72 " ,
16
16
"@docusaurus/plugin-google-analytics" : " ^2.0.0-alpha.66" ,
17
- "@docusaurus/preset-classic" : " 2.0.0-alpha.66 " ,
17
+ "@docusaurus/preset-classic" : " ^ 2.0.0-alpha.72 " ,
18
18
"@octokit/graphql" : " ^4.5.7" ,
19
19
"@react-navigation/core" : " ^5.14.3" ,
20
20
"classnames" : " ^2.2.6" ,
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ function findNearestCodeBlock(node) {
90
90
while ( nextElement ) {
91
91
if (
92
92
nextElement . tagName === 'DIV' &&
93
- nextElement . className . includes ( 'mdxCodeBlock' )
93
+ ( nextElement . className . includes ( 'mdxCodeBlock' ) || nextElement . className . includes ( 'codeBlockContainer' ) )
94
94
) {
95
95
return nextElement ;
96
96
} else {
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+ import DefaultDocItem from '@theme/DocItem' ;
3
+ import ExecutionEnvironment from '@docusaurus/ExecutionEnvironment' ;
4
+
5
+ function DocItem ( props ) {
6
+ // make sure to not use the window on the SSR
7
+ if ( ! ExecutionEnvironment . canUseDOM ) {
8
+ return null ;
9
+ }
10
+ return < DefaultDocItem { ...props } /> ;
11
+ }
12
+
13
+ export default DocItem ;
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import DefaultDocPage from '@theme/DocPage' ;
3
+ import ExecutionEnvironment from '@docusaurus/ExecutionEnvironment' ;
3
4
import {
4
5
initializeSnackObservers ,
5
6
removeSnackObservers ,
6
- } from '../SnackHelpers' ;
7
+ } from '../../ SnackHelpers' ;
7
8
8
9
function DocPage ( props ) {
10
+ // make sure to not use the window on the SSR
11
+ if ( ! ExecutionEnvironment . canUseDOM ) {
12
+ return null ;
13
+ }
9
14
React . useEffect ( ( ) => {
10
15
// Tags in Head aren't immediately available when the snack script loads, so
11
16
// instead let's just store this in a global...
You can’t perform that action at this time.
0 commit comments