2016-03-25 19:57:17 +00:00
|
|
|
const path = require('path')
|
|
|
|
const Module = require('module')
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Clear Node's global search paths.
|
2016-03-25 19:57:17 +00:00
|
|
|
Module.globalPaths.length = 0
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-05-23 17:28:32 +00:00
|
|
|
// Clear current and parent(init.js)'s search paths.
|
2016-03-25 19:57:17 +00:00
|
|
|
module.paths = []
|
|
|
|
module.parent.paths = []
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Prevent Node from adding paths outside this app to search paths.
|
2016-06-23 22:27:45 +00:00
|
|
|
const originalNodeModulePaths = Module._nodeModulePaths
|
2016-03-25 19:57:17 +00:00
|
|
|
Module._nodeModulePaths = function (from) {
|
2016-06-23 22:27:45 +00:00
|
|
|
const paths = originalNodeModulePaths(from)
|
|
|
|
const rootPath = process.resourcesPath
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// If "from" is outside the app then we do nothing.
|
2016-06-23 22:27:45 +00:00
|
|
|
const skipOutsidePaths = path.resolve(from).startsWith(rootPath)
|
|
|
|
if (skipOutsidePaths) {
|
|
|
|
return paths.filter(function (candidate) {
|
|
|
|
return candidate.startsWith(rootPath)
|
|
|
|
})
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2016-06-23 22:27:45 +00:00
|
|
|
|
2016-03-25 19:57:17 +00:00
|
|
|
return paths
|
|
|
|
}
|
2016-05-23 17:56:49 +00:00
|
|
|
|
2016-05-23 22:15:39 +00:00
|
|
|
// Patch Module._resolveFilename to always require the Electron API when
|
|
|
|
// require('electron') is done.
|
2016-05-23 17:56:49 +00:00
|
|
|
const electronPath = path.join(__dirname, '..', process.type, 'api', 'exports', 'electron.js')
|
|
|
|
const originalResolveFilename = Module._resolveFilename
|
|
|
|
Module._resolveFilename = function (request, parent, isMain) {
|
|
|
|
if (request === 'electron') {
|
|
|
|
return electronPath
|
|
|
|
} else {
|
|
|
|
return originalResolveFilename(request, parent, isMain)
|
|
|
|
}
|
|
|
|
}
|