diff --git a/docs/tutorial/part-two/index.md b/docs/tutorial/part-two/index.md index 45860fce9c0ce..4a01d5e0a1d5b 100644 --- a/docs/tutorial/part-two/index.md +++ b/docs/tutorial/part-two/index.md @@ -204,7 +204,7 @@ module.exports = { { resolve: `gatsby-plugin-typography`, options: { - configModule: `src/utils/typography.js`, + pathToConfigModule: `src/utils/typography.js`, }, }, ], @@ -602,4 +602,4 @@ Gatsby supports almost every possible styling option (if there isn't a plugin ye * [Emotion](/packages/gatsby-plugin-emotion/) * [JSS](/packages/gatsby-plugin-jss/) * [Stylus](/packages/gatsby-plugin-stylus/) -* and more! \ No newline at end of file +* and more! diff --git a/packages/gatsby-link/src/__tests__/index.js b/packages/gatsby-link/src/__tests__/index.js index 638ea94fea49c..3ccbc7629320d 100644 --- a/packages/gatsby-link/src/__tests__/index.js +++ b/packages/gatsby-link/src/__tests__/index.js @@ -19,7 +19,6 @@ const getNavigateTo = () => { } describe(``, () => { - it(`does not fail to initialize when __PREFIX_PATHS__ is not defined`, () => { expect(() => { const Link = require(`../`).default diff --git a/packages/gatsby-plugin-typography/src/gatsby-browser.js b/packages/gatsby-plugin-typography/src/gatsby-browser.js index 28ee85722e0e2..4b749c1cea6c5 100644 --- a/packages/gatsby-plugin-typography/src/gatsby-browser.js +++ b/packages/gatsby-plugin-typography/src/gatsby-browser.js @@ -2,6 +2,6 @@ import typography from "gatsby-plugin-typography/.cache/typography.js" // Hot reload typography in development. if (process.env.NODE_ENV !== `production`) { - console.log("injecting styles", typography) + console.log(`injecting styles`, typography) typography.injectStyles() }