@expo/config-plugins
Version:
A library for Expo config plugins
128 lines (125 loc) • 5.66 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Config = void 0;
exports.setUpdatesConfigAsync = setUpdatesConfigAsync;
exports.setVersionsConfigAsync = setVersionsConfigAsync;
exports.withUpdates = void 0;
function _iosPlugins() {
const data = require("../plugins/ios-plugins");
_iosPlugins = function () {
return data;
};
return data;
}
function _Updates() {
const data = require("../utils/Updates");
_Updates = function () {
return data;
};
return data;
}
function _warnings() {
const data = require("../utils/warnings");
_warnings = function () {
return data;
};
return data;
}
let Config = exports.Config = /*#__PURE__*/function (Config) {
Config["ENABLED"] = "EXUpdatesEnabled";
Config["CHECK_ON_LAUNCH"] = "EXUpdatesCheckOnLaunch";
Config["LAUNCH_WAIT_MS"] = "EXUpdatesLaunchWaitMs";
Config["RUNTIME_VERSION"] = "EXUpdatesRuntimeVersion";
Config["UPDATE_URL"] = "EXUpdatesURL";
Config["UPDATES_CONFIGURATION_REQUEST_HEADERS_KEY"] = "EXUpdatesRequestHeaders";
Config["UPDATES_HAS_EMBEDDED_UPDATE"] = "EXUpdatesHasEmbeddedUpdate";
Config["CODE_SIGNING_CERTIFICATE"] = "EXUpdatesCodeSigningCertificate";
Config["CODE_SIGNING_METADATA"] = "EXUpdatesCodeSigningMetadata";
Config["DISABLE_ANTI_BRICKING_MEASURES"] = "EXUpdatesDisableAntiBrickingMeasures";
return Config;
}({}); // when making changes to this config plugin, ensure the same changes are also made in eas-cli and build-tools
// Also ensure the docs are up-to-date: https://docs.expo.dev/bare/installing-updates/
const withUpdates = config => {
return (0, _iosPlugins().withExpoPlist)(config, async config => {
const projectRoot = config.modRequest.projectRoot;
const expoUpdatesPackageVersion = (0, _Updates().getExpoUpdatesPackageVersion)(projectRoot);
config.modResults = await setUpdatesConfigAsync(projectRoot, config, config.modResults, expoUpdatesPackageVersion);
return config;
});
};
exports.withUpdates = withUpdates;
async function setUpdatesConfigAsync(projectRoot, config, expoPlist, expoUpdatesPackageVersion) {
const checkOnLaunch = (0, _Updates().getUpdatesCheckOnLaunch)(config, expoUpdatesPackageVersion);
const timeout = (0, _Updates().getUpdatesTimeout)(config);
const useEmbeddedUpdate = (0, _Updates().getUpdatesUseEmbeddedUpdate)(config);
// TODO: is there a better place for this validation?
if (!useEmbeddedUpdate && timeout === 0 && checkOnLaunch !== 'ALWAYS') {
(0, _warnings().addWarningIOS)('updates.useEmbeddedUpdate', `updates.checkOnLaunch should be set to "ON_LOAD" and updates.fallbackToCacheTimeout should be set to a non-zero value when updates.useEmbeddedUpdate is set to false. This is because an update must be fetched on the initial launch, when no embedded update is available.`);
}
const newExpoPlist = {
...expoPlist,
[Config.ENABLED]: (0, _Updates().getUpdatesEnabled)(config),
[Config.CHECK_ON_LAUNCH]: checkOnLaunch,
[Config.LAUNCH_WAIT_MS]: timeout
};
// The native config name is "has embedded update", but we want to expose
// this to the user as "use embedded update", since this is more accurate.
// The field does not disable actually building and embedding the update,
// only whether it is actually used.
if (useEmbeddedUpdate) {
delete newExpoPlist[Config.UPDATES_HAS_EMBEDDED_UPDATE];
} else {
newExpoPlist[Config.UPDATES_HAS_EMBEDDED_UPDATE] = false;
}
const updateUrl = (0, _Updates().getUpdateUrl)(config);
if (updateUrl) {
newExpoPlist[Config.UPDATE_URL] = updateUrl;
} else {
delete newExpoPlist[Config.UPDATE_URL];
}
const codeSigningCertificate = (0, _Updates().getUpdatesCodeSigningCertificate)(projectRoot, config);
if (codeSigningCertificate) {
newExpoPlist[Config.CODE_SIGNING_CERTIFICATE] = codeSigningCertificate;
} else {
delete newExpoPlist[Config.CODE_SIGNING_CERTIFICATE];
}
const codeSigningMetadata = (0, _Updates().getUpdatesCodeSigningMetadata)(config);
if (codeSigningMetadata) {
newExpoPlist[Config.CODE_SIGNING_METADATA] = codeSigningMetadata;
} else {
delete newExpoPlist[Config.CODE_SIGNING_METADATA];
}
const requestHeaders = (0, _Updates().getUpdatesRequestHeaders)(config);
if (requestHeaders) {
newExpoPlist[Config.UPDATES_CONFIGURATION_REQUEST_HEADERS_KEY] = requestHeaders;
} else {
delete newExpoPlist[Config.UPDATES_CONFIGURATION_REQUEST_HEADERS_KEY];
}
const disableAntiBrickingMeasures = (0, _Updates().getDisableAntiBrickingMeasures)(config);
if (disableAntiBrickingMeasures) {
newExpoPlist[Config.DISABLE_ANTI_BRICKING_MEASURES] = disableAntiBrickingMeasures;
} else {
delete newExpoPlist[Config.DISABLE_ANTI_BRICKING_MEASURES];
}
return await setVersionsConfigAsync(projectRoot, config, newExpoPlist);
}
async function setVersionsConfigAsync(projectRoot, config, expoPlist) {
const newExpoPlist = {
...expoPlist
};
const runtimeVersion = await (0, _Updates().getRuntimeVersionNullableAsync)(projectRoot, config, 'ios');
if (!runtimeVersion && expoPlist[Config.RUNTIME_VERSION]) {
throw new Error('A runtime version is set in your Expo.plist, but is missing from your app.json/app.config.js. Please either set runtimeVersion in your app.json/app.config.js or remove EXUpdatesRuntimeVersion from your Expo.plist.');
}
if (runtimeVersion) {
delete newExpoPlist['EXUpdatesSDKVersion'];
newExpoPlist[Config.RUNTIME_VERSION] = runtimeVersion;
} else {
delete newExpoPlist['EXUpdatesSDKVersion'];
delete newExpoPlist[Config.RUNTIME_VERSION];
}
return newExpoPlist;
}
//# sourceMappingURL=Updates.js.map