mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-10 00:02:41 +08:00
120 lines
5.6 KiB
JavaScript
120 lines
5.6 KiB
JavaScript
![]() |
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.getElectronVersion = getElectronVersion;
|
||
|
exports.getElectronVersionFromInstalled = getElectronVersionFromInstalled;
|
||
|
exports.getElectronPackage = getElectronPackage;
|
||
|
exports.computeElectronVersion = computeElectronVersion;
|
||
|
const search_module_1 = require("@electron/rebuild/lib/search-module");
|
||
|
const builder_util_1 = require("builder-util");
|
||
|
const builder_util_runtime_1 = require("builder-util-runtime");
|
||
|
const fs_extra_1 = require("fs-extra");
|
||
|
const path = require("path");
|
||
|
const semver = require("semver");
|
||
|
const config_1 = require("../util/config/config");
|
||
|
const load_1 = require("../util/config/load");
|
||
|
const electronPackages = ["electron", "electron-prebuilt", "electron-prebuilt-compile", "electron-nightly"];
|
||
|
async function getElectronVersion(projectDir, config) {
|
||
|
if (config == null) {
|
||
|
config = await (0, config_1.getConfig)(projectDir, null, null);
|
||
|
}
|
||
|
if (config.electronVersion != null) {
|
||
|
return config.electronVersion;
|
||
|
}
|
||
|
return computeElectronVersion(projectDir);
|
||
|
}
|
||
|
async function getElectronVersionFromInstalled(projectDir) {
|
||
|
for (const name of electronPackages) {
|
||
|
try {
|
||
|
return (await (0, fs_extra_1.readJson)(path.join(projectDir, "node_modules", name, "package.json"))).version;
|
||
|
}
|
||
|
catch (e) {
|
||
|
if (e.code !== "ENOENT") {
|
||
|
builder_util_1.log.warn({ name, error: e }, `cannot read electron version package.json`);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
async function getElectronPackage(projectDir) {
|
||
|
for (const name of electronPackages) {
|
||
|
try {
|
||
|
return await (0, fs_extra_1.readJson)(path.join(projectDir, "node_modules", name, "package.json"));
|
||
|
}
|
||
|
catch (e) {
|
||
|
if (e.code !== "ENOENT") {
|
||
|
builder_util_1.log.warn({ name, error: e }, `cannot find electron in package.json`);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
/** @internal */
|
||
|
async function computeElectronVersion(projectDir) {
|
||
|
const result = await getElectronVersionFromInstalled(projectDir);
|
||
|
if (result != null) {
|
||
|
return result;
|
||
|
}
|
||
|
const potentialRootDirs = [projectDir, await (0, search_module_1.getProjectRootPath)(projectDir)];
|
||
|
let dependency = null;
|
||
|
for (const dir of potentialRootDirs) {
|
||
|
const metadata = await (0, load_1.orNullIfFileNotExist)((0, fs_extra_1.readJson)(path.join(dir, "package.json")));
|
||
|
dependency = metadata ? findFromPackageMetadata(metadata) : null;
|
||
|
if (dependency) {
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
if ((dependency === null || dependency === void 0 ? void 0 : dependency.name) === "electron-nightly") {
|
||
|
builder_util_1.log.info("You are using a nightly version of electron, be warned that those builds are highly unstable.");
|
||
|
const feedXml = await builder_util_1.httpExecutor.request({
|
||
|
hostname: "github.com",
|
||
|
path: `/electron/nightlies/releases.atom`,
|
||
|
headers: {
|
||
|
accept: "application/xml, application/atom+xml, text/xml, */*",
|
||
|
},
|
||
|
});
|
||
|
const feed = (0, builder_util_runtime_1.parseXml)(feedXml);
|
||
|
const latestRelease = feed.element("entry", false, `No published versions on GitHub`);
|
||
|
const v = /\/tag\/v?([^/]+)$/.exec(latestRelease.element("link").attribute("href"))[1];
|
||
|
return v.startsWith("v") ? v.substring(1) : v;
|
||
|
}
|
||
|
else if ((dependency === null || dependency === void 0 ? void 0 : dependency.version) === "latest") {
|
||
|
builder_util_1.log.warn('Electron version is set to "latest", but it is recommended to set it to some more restricted version range.');
|
||
|
try {
|
||
|
const releaseInfo = JSON.parse((await builder_util_1.httpExecutor.request({
|
||
|
hostname: "github.com",
|
||
|
path: `/electron/${dependency.name === "electron-nightly" ? "nightlies" : "electron"}/releases/latest`,
|
||
|
headers: {
|
||
|
accept: "application/json",
|
||
|
},
|
||
|
})));
|
||
|
const version = releaseInfo.tag_name.startsWith("v") ? releaseInfo.tag_name.substring(1) : releaseInfo.tag_name;
|
||
|
builder_util_1.log.info({ version }, `resolve ${dependency.name}@${dependency.version}`);
|
||
|
return version;
|
||
|
}
|
||
|
catch (e) {
|
||
|
builder_util_1.log.warn(e);
|
||
|
}
|
||
|
throw new builder_util_1.InvalidConfigurationError(`Cannot find electron dependency to get electron version in the '${path.join(projectDir, "package.json")}'`);
|
||
|
}
|
||
|
const version = dependency === null || dependency === void 0 ? void 0 : dependency.version;
|
||
|
if (version == null || !/^\d/.test(version)) {
|
||
|
const versionMessage = version == null ? "" : ` and version ("${version}") is not fixed in project`;
|
||
|
throw new builder_util_1.InvalidConfigurationError(`Cannot compute electron version from installed node modules - none of the possible electron modules are installed${versionMessage}.\nSee https://github.com/electron-userland/electron-builder/issues/3984#issuecomment-504968246`);
|
||
|
}
|
||
|
return semver.coerce(version).format();
|
||
|
}
|
||
|
function findFromPackageMetadata(packageData) {
|
||
|
for (const name of electronPackages) {
|
||
|
const devDependencies = packageData.devDependencies;
|
||
|
let dep = devDependencies == null ? null : devDependencies[name];
|
||
|
if (dep == null) {
|
||
|
const dependencies = packageData.dependencies;
|
||
|
dep = dependencies == null ? null : dependencies[name];
|
||
|
}
|
||
|
if (dep != null) {
|
||
|
return { name, version: dep };
|
||
|
}
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
//# sourceMappingURL=electronVersion.js.map
|