File tree 4 files changed +21
-7
lines changed
4 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ var context = {};
10
10
var onRenderBody = function ( _a ) {
11
11
var setHeadComponents = _a . setHeadComponents , setHtmlAttributes = _a . setHtmlAttributes , setBodyAttributes = _a . setBodyAttributes ;
12
12
var helmet = context . helmet ;
13
- if ( helmet != null ) {
13
+ if ( helmet ) {
14
14
setHeadComponents ( [
15
15
helmet . base . toComponent ( ) ,
16
16
helmet . title . toComponent ( ) ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gatsby-plugin-react-helmet-async" ,
3
- "version" : " 1.2.1 " ,
3
+ "version" : " 1.2.2 " ,
4
4
"description" : " Use react-helmet-async with Gatsby" ,
5
5
"keywords" : [
6
6
" gatsby" ,
21
21
"author" : " Martin Rosenberg <Martin.B.Rosenberg@gmail.com> (https://martinbrosenberg.com)" ,
22
22
"main" : " index.js" ,
23
23
"scripts" : {
24
+ "prepublish" : " yarn build" ,
24
25
"build" : " tsc --build" ,
25
26
"clean" : " rm gatsby-browser.d.ts gatsby-browser.js gatsby-ssr.d.ts gatsby-ssr.js" ,
26
27
"lint" : " eslint src --ext ts,tsx --fix" ,
27
28
"test" : " echo \" Error: no tests specified\" && exit 1"
28
29
},
29
30
"devDependencies" : {
31
+ "@types/react" : " ^17" ,
32
+ "@types/react-dom" : " ^17" ,
30
33
"@typescript-eslint/eslint-plugin" : " ^5.27.1" ,
31
34
"@typescript-eslint/parser" : " ^5.27.1" ,
32
35
"eslint" : " ^8.17.0" ,
52
55
"react" : " ^16.6.0 || ^17 || ^18" ,
53
56
"react-dom" : " ^16.6.0 || ^17 || ^18" ,
54
57
"react-helmet-async" : " 1.x"
58
+ },
59
+ "resolutions" : {
60
+ "@types/react" : " ^17" ,
61
+ "@types/react-dom" : " ^17"
55
62
}
56
63
}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export const onRenderBody: GatsbySSR['onRenderBody'] = ({
11
11
} : RenderBodyArgs ) : void => {
12
12
const { helmet } = context ;
13
13
14
- if ( helmet != null ) {
14
+ if ( helmet ) {
15
15
setHeadComponents ( [
16
16
helmet . base . toComponent ( ) ,
17
17
helmet . title . toComponent ( ) ,
Original file line number Diff line number Diff line change 1800
1800
dependencies :
1801
1801
" @types/react" " *"
1802
1802
1803
- " @types/react@* " :
1804
- version "18.0.12"
1805
- resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.12.tgz#cdaa209d0a542b3fcf69cf31a03976ec4cdd8840"
1806
- integrity sha512-duF1OTASSBQtcigUvhuiTB1Ya3OvSy+xORCiEf20H0P0lzx+/KeVsA99U5UjLXSbyo1DRJDlLKqTeM1ngosqtg==
1803
+ " @types/react-dom@^17 " :
1804
+ version "17.0.17"
1805
+ resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.17.tgz#2e3743277a793a96a99f1bf87614598289da68a1"
1806
+ integrity sha512-VjnqEmqGnasQKV0CWLevqMTXBYG9GbwuE6x3VetERLh0cq2LTptFE73MrQi2S7GkKXCf2GgwItB/melLnxfnsg==
1807
+ dependencies :
1808
+ " @types/react" " ^17"
1809
+
1810
+ " @types/react@*" , "@types/react@^17":
1811
+ version "17.0.45"
1812
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.45.tgz#9b3d5b661fd26365fefef0e766a1c6c30ccf7b3f"
1813
+ integrity sha512-YfhQ22Lah2e3CHPsb93tRwIGNiSwkuz1/blk4e6QrWS0jQzCSNbGLtOEYhPg02W0yGTTmpajp7dCTbBAMN3qsg==
1807
1814
dependencies :
1808
1815
" @types/prop-types" " *"
1809
1816
" @types/scheduler" " *"
You can’t perform that action at this time.
0 commit comments