Add ELECTRON_DISABLE_OLD_STYLE_MODULES env

This commit is contained in:
Cheng Zhao 2015-11-12 17:02:04 +08:00
parent c2c09daa23
commit f9d7e7ce55
3 changed files with 11 additions and 8 deletions

View file

@ -13,12 +13,13 @@ require path.resolve(__dirname, '..', '..', 'common', 'lib', 'reset-search-paths
# Import common settings.
require path.resolve(__dirname, '..', '..', 'common', 'lib', 'init')
# Add browser/api/lib to module search paths, which contains javascript part of
# Electron's built-in libraries.
# Expose public APIs.
globalPaths = Module.globalPaths
globalPaths.push path.resolve(__dirname, '..', 'api', 'lib')
globalPaths.push path.resolve(__dirname, '..', 'api', 'lib', 'exports')
unless process.env.ELECTRON_DISABLE_OLD_STYLE_MODULES
globalPaths.push path.resolve(__dirname, '..', 'api', 'lib')
if process.platform is 'win32'
# Redirect node's console to use our own implementations, since node can not
# handle console output when running as GUI program.