Skip to content

Commit b63bab3

Browse files
Fix missing "React Helmet" dependency
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
1 parent 24aecae commit b63bab3

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

package-lock.json

+25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
"gatsby-transformer-yaml": "2.1.5",
7676
"nord": ">=0.2.1 <1.0.0",
7777
"react": "16.6.3",
78-
"react-dom": "16.6.3"
78+
"react-dom": "16.6.3",
79+
"react-helmet": "5.2.0"
7980
}
8081
}

0 commit comments

Comments
 (0)