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 renderer/api/lib to require's search paths, which contains javascript part
# of Atom'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')
# The global variable will be used by ipc for event dispatching
v8Util = process.atomBinding 'v8_util'
v8Util.setHiddenValue global, 'ipc', new events.EventEmitter