提交 8c6051e0 编写于 作者: B Benjamin Pasero

another attempt at ASAR

上级 f34d169f
......@@ -36,6 +36,7 @@ exports.assign = function assign(destination, source) {
exports.load = function (modulePaths, resultCallback, options) {
// @ts-ignore
const webFrame = require('electron').webFrame;
const path = require('path');
const args = exports.parseURLQueryArgs();
const configuration = JSON.parse(args['config'] || '{}') || {};
......@@ -55,7 +56,7 @@ exports.load = function (modulePaths, resultCallback, options) {
exports.assign(process.env, configuration.userEnv);
// Enable ASAR support
bootstrap.enableASARSupport();
bootstrap.enableASARSupport(path.join(configuration.appRoot, 'node_modules'));
// disable pinch zoom & apply zoom level early to avoid glitches
const zoomLevel = configuration.zoomLevel;
......
......@@ -21,11 +21,18 @@ process.on('SIGPIPE', () => {
//#endregion
//#region Add support for using node_modules.asar
exports.enableASARSupport = function () {
/**
* @param {string=} nodeModulesPath
*/
exports.enableASARSupport = function (nodeModulesPath) {
// @ts-ignore
const Module = require('module');
const path = require('path');
const NODE_MODULES_PATH = path.join(__dirname, '../node_modules');
let NODE_MODULES_PATH = nodeModulesPath;
if (!NODE_MODULES_PATH) {
NODE_MODULES_PATH = path.join(__dirname, '../node_modules');
}
const NODE_MODULES_ASAR_PATH = NODE_MODULES_PATH + '.asar';
const originalResolveLookupPaths = Module._resolveLookupPaths;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册