You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
348 B
12 lines
348 B
// @flow
|
|
import chalk from 'chalk'
|
|
|
|
export default function CheckNodeEnv(expectedEnv: string) {
|
|
if (!expectedEnv) {
|
|
throw new Error('"expectedEnv" not set')
|
|
}
|
|
|
|
if (process.env.NODE_ENV !== expectedEnv) {
|
|
throw new Error(chalk.whiteBright.bgRed.bold(`"process.env.NODE_ENV" must be "${expectedEnv}" to use this webpack config`))
|
|
}
|
|
}
|
|
|