1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const config_plugins_1 = require("expo/config-plugins");
4const pkg = require('expo-updates/package.json');
5// when making changes to this config plugin, ensure the same changes are also made in eas-cli and build-tools
6const withUpdates = (config) => {
7    config = config_plugins_1.AndroidConfig.Updates.withUpdates(config);
8    config = config_plugins_1.IOSConfig.Updates.withUpdates(config);
9    return config;
10};
11exports.default = (0, config_plugins_1.createRunOncePlugin)(withUpdates, pkg.name, pkg.version);
12