UNPKG

@expo/cli

Version:
124 lines (123 loc) 4.53 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "installExpoPackageAsync", { enumerable: true, get: function() { return installExpoPackageAsync; } }); function _spawnasync() { const data = /*#__PURE__*/ _interop_require_default(require("@expo/spawn-async")); _spawnasync = function() { return data; }; return data; } function _chalk() { const data = /*#__PURE__*/ _interop_require_default(require("chalk")); _chalk = function() { return data; }; return data; } const _log = /*#__PURE__*/ _interop_require_wildcard(require("../log")); const _getRunningProcess = require("../utils/getRunningProcess"); function _interop_require_default(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interop_require_wildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = { __proto__: null }; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for(var key in obj){ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } async function installExpoPackageAsync(projectRoot, { packageManager, packageManagerArguments, expoPackageToInstall, followUpCommandArgs, dev }) { // Check if there's potentially a dev server running in the current folder and warn about it // (not guaranteed to be Expo CLI, and the CLI isn't always running on 8081, but it's a good guess) const isExpoMaybeRunningForProject = !!await (0, _getRunningProcess.getRunningProcess)(8081); if (isExpoMaybeRunningForProject) { _log.warn('The Expo CLI appears to be running this project in another terminal window. Close and restart any Expo CLI instances after the installation to complete the update.'); } // Safe to use current process to upgrade Expo package- doesn't affect current process try { if (dev) { await packageManager.addDevAsync([ ...packageManagerArguments, expoPackageToInstall ]); } else { await packageManager.addAsync([ ...packageManagerArguments, expoPackageToInstall ]); } } catch (error) { _log.error((0, _chalk().default)`Cannot install the latest Expo package. Install {bold expo@latest} with ${packageManager.name} and then run {bold npx expo install} again.`); throw error; } // Spawn a new process to install the rest of the packages if there are any, as only then will the latest Expo package be used if (followUpCommandArgs.length) { let commandSegments = [ 'expo', 'install', dev ? '--dev' : '', ...followUpCommandArgs ].filter(Boolean); if (packageManagerArguments.length) { commandSegments = [ ...commandSegments, '--', ...packageManagerArguments ]; } _log.log((0, _chalk().default)`\u203A Running {bold npx expo install} under the updated expo version`); _log.log('> ' + commandSegments.join(' ')); await (0, _spawnasync().default)('npx', commandSegments, { stdio: 'inherit', cwd: projectRoot, env: { ...process.env } }); } } //# sourceMappingURL=installExpoPackage.js.map