Skip to content

Commit

Permalink
Fix missing "React Helmet" dependency
Browse files Browse the repository at this point in the history
During the initial implementation of Gatsby (GH-27) the
gatsby-plugin-react-helmet (1) has been added, but the required
react-helmet (2) main package was accidentally forgotten to be added.

References:
  (1) https://www.npmjs.com/package/gatsby-plugin-react-helmet
  (2)https://www.npmjs.com/package/react-helmet

Related to GH-27
Closes GH-34
  • Loading branch information
arcticicestudio committed Nov 20, 2018
1 parent 24aecae commit b63bab3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
25 changes: 25 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
"gatsby-transformer-yaml": "2.1.5",
"nord": ">=0.2.1 <1.0.0",
"react": "16.6.3",
"react-dom": "16.6.3"
"react-dom": "16.6.3",
"react-helmet": "5.2.0"
}
}

0 comments on commit b63bab3

Please sign in to comment.