49 lines
1.6 KiB
JavaScript
49 lines
1.6 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.createLegacyPlugin = createLegacyPlugin;
|
|
function _configPlugins() {
|
|
const data = require("@expo/config-plugins");
|
|
_configPlugins = function () {
|
|
return data;
|
|
};
|
|
return data;
|
|
}
|
|
const toCamelCase = s => s.replace(/-./g, x => x.toUpperCase()[1]);
|
|
function isModuleExcluded(config, packageName) {
|
|
// Skip using the versioned plugin when autolinking is enabled
|
|
// and doesn't link the native module.
|
|
return config._internal?.autolinkedModules && !config._internal.autolinkedModules.includes(packageName);
|
|
}
|
|
function createLegacyPlugin({
|
|
packageName,
|
|
fallback
|
|
}) {
|
|
let withFallback;
|
|
if (Array.isArray(fallback)) {
|
|
withFallback = config => (0, _configPlugins().withPlugins)(config, fallback);
|
|
} else {
|
|
withFallback = fallback;
|
|
}
|
|
const withUnknown = config => {
|
|
// Skip using the versioned plugin when autolinking is enabled
|
|
// and doesn't link the native module.
|
|
if (isModuleExcluded(config, packageName)) {
|
|
return (0, _configPlugins().createRunOncePlugin)(withFallback, packageName)(config);
|
|
}
|
|
return (0, _configPlugins().withStaticPlugin)(config, {
|
|
_isLegacyPlugin: true,
|
|
plugin: packageName,
|
|
// If the static plugin isn't found, use the unversioned one.
|
|
fallback: (0, _configPlugins().createRunOncePlugin)(withFallback, packageName)
|
|
});
|
|
};
|
|
const methodName = toCamelCase(`with-${packageName}`);
|
|
Object.defineProperty(withUnknown, 'name', {
|
|
value: methodName
|
|
});
|
|
return withUnknown;
|
|
}
|
|
//# sourceMappingURL=createLegacyPlugin.js.map
|