Don't redefine process variable (#6991)

Don't redefine `process` variable
This commit is contained in:
Michael Shilman 2019-06-06 11:01:22 -07:00 committed by GitHub
commit 1385e624b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ export default ({ configDir, configType, entries, dll, outputDir, cache, babelOp
new Dotenv({ silent: true }),
// graphql sources check process variable
new DefinePlugin({
process: { browser: true, env: stringified },
'process.env': stringified,
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
}),
// See https://github.com/graphql/graphql-language-service/issues/111#issuecomment-306723400

View File

@ -59,7 +59,7 @@ export default ({
template: require.resolve(`../templates/index.ejs`),
}),
new DefinePlugin({
process: { browser: true, env: stringified },
'process.env': stringified,
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
}),
isProd ? null : new WatchMissingNodeModulesPlugin(nodeModulesPaths),