Skip to content

Commit

Permalink
keep yurnalist when on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
wardpeet committed May 2, 2019
1 parent ca18691 commit 056580d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/gatsby-cli/src/reporter/reporters/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const semver = require(`semver`)
const { isCI } = require(`ci-info`)

console.trace(`loading ink =====================`)
if (semver.satisfies(process.version, `>=8`)) {
if (semver.satisfies(process.version, `>=8`) && !isCI) {
module.exports = require(`./ink`).default
} else {
module.exports = require(`./yurnalist`)
Expand Down

0 comments on commit 056580d

Please sign in to comment.