Skip to content

Commit

Permalink
fix(docz-core): process.env vars for scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Jul 19, 2018
1 parent 00b7ab4 commit f6b6260
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/docz-core/src/commands/build.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
process.env.BABEL_ENV = process.env.BABEL_ENV || 'production'
process.env.NODE_ENV = process.env.NODE_ENV || 'production'
process.env.BABEL_ENV = 'production'
process.env.NODE_ENV = 'production'

import * as fs from 'fs-extra'
import logger from 'signale'
Expand Down

0 comments on commit f6b6260

Please sign in to comment.