Skip to content

Commit

Permalink
fix(gatsby): fix error cannot read referencePath of undefined (#20517)
Browse files Browse the repository at this point in the history
* fix error cannot read referencePath of undefined

* fix import path
  • Loading branch information
muescha authored and GatsbyJS Bot committed Jan 10, 2020
1 parent dc56563 commit c759a7d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gatsby/src/utils/api-runner-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const { emitter, store } = require(`../redux`)
const getPublicPath = require(`./get-public-path`)
const { getNonGatsbyCodeFrameFormatted } = require(`./stack-trace-utils`)
const { trackBuildError, decorateEvent } = require(`gatsby-telemetry`)
const { default: errorParser } = require(`./api-runner-node-error-parser`)
const { default: errorParser } = require(`./api-runner-error-parser`)

// Bind action creators per plugin so we can auto-add
// metadata to actions they create.
Expand Down

0 comments on commit c759a7d

Please sign in to comment.