UNPKG

@expo/cli

Version:
38 lines (37 loc) 1.4 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "resolveBundlerPropsAsync", { enumerable: true, get: function() { return resolveBundlerPropsAsync; } }); const _log = require("../log"); const _errors = require("../utils/errors"); const _port = require("../utils/port"); async function resolveBundlerPropsAsync(projectRoot, options) { options.bundler = options.bundler ?? true; if (// If the user disables the bundler then they should not pass in the port property. !options.bundler && options.port) { throw new _errors.CommandError('BAD_ARGS', '--port and --no-bundler are mutually exclusive arguments'); } // Resolve the port if the bundler is used. let port = options.bundler ? await (0, _port.resolvePortAsync)(projectRoot, { reuseExistingPort: true, defaultPort: options.port }) : null; // Skip bundling if the port is null -- meaning skip the bundler if the port is already running the app. options.bundler = !!port; if (!port) { // Use explicit user-provided port, or the default port port = options.port ?? 8081; } _log.Log.debug(`Resolved port: ${port}, start dev server: ${options.bundler}`); return { shouldStartBundler: !!options.bundler, port }; } //# sourceMappingURL=resolveBundlerProps.js.map