UNPKG

@parcel/core

Version:
161 lines (148 loc) 3.59 kB
// @flow import type { EnvironmentOptions, Environment as IEnvironment, FilePath, } from '@parcel/types'; import type {Environment, InternalSourceLocation} from './types'; import {hashString} from '@parcel/rust'; import {toInternalSourceLocation} from './utils'; import PublicEnvironment from './public/Environment'; import {environmentToInternalEnvironment} from './public/Environment'; const DEFAULT_ENGINES = { browsers: ['> 0.25%'], node: '>= 18.0.0', }; type EnvironmentOpts = {| ...EnvironmentOptions, loc?: ?InternalSourceLocation, |}; export function createEnvironment({ context, engines, includeNodeModules, outputFormat, sourceType = 'module', shouldOptimize = false, isLibrary = false, shouldScopeHoist = false, sourceMap, loc, }: EnvironmentOpts = { /*::...null*/ }): Environment { if (context == null) { if (engines?.node) { context = 'node'; } else if (engines?.browsers) { context = 'browser'; } else { context = 'browser'; } } if (engines == null) { switch (context) { case 'node': case 'electron-main': case 'react-server': engines = { node: DEFAULT_ENGINES.node, }; break; case 'browser': case 'web-worker': case 'service-worker': case 'electron-renderer': case 'react-client': engines = { browsers: DEFAULT_ENGINES.browsers, }; break; default: engines = {}; } } if (includeNodeModules == null) { switch (context) { case 'node': case 'electron-main': case 'electron-renderer': includeNodeModules = false; break; case 'browser': case 'web-worker': case 'service-worker': default: includeNodeModules = true; break; } } if (outputFormat == null) { switch (context) { case 'node': case 'electron-main': case 'electron-renderer': case 'react-server': outputFormat = 'commonjs'; break; default: outputFormat = 'global'; break; } } let res: Environment = { id: '', context, engines, includeNodeModules, outputFormat, sourceType, isLibrary, shouldOptimize, shouldScopeHoist, sourceMap, loc, }; res.id = getEnvironmentHash(res); return res; } export function mergeEnvironments( projectRoot: FilePath, a: Environment, b: ?(EnvironmentOptions | IEnvironment), ): Environment { // If merging the same object, avoid copying. if (a === b || !b) { return a; } if (b instanceof PublicEnvironment) { return environmentToInternalEnvironment(b); } return createEnvironment({ context: b.context ?? a.context, engines: b.engines ?? a.engines, includeNodeModules: b.includeNodeModules ?? a.includeNodeModules, outputFormat: b.outputFormat ?? a.outputFormat, sourceType: b.sourceType ?? a.sourceType, isLibrary: b.isLibrary ?? a.isLibrary, shouldOptimize: b.shouldOptimize ?? a.shouldOptimize, shouldScopeHoist: b.shouldScopeHoist ?? a.shouldScopeHoist, sourceMap: b.sourceMap ?? a.sourceMap, loc: b.loc ? toInternalSourceLocation(projectRoot, b.loc) : a.loc, }); } function getEnvironmentHash(env: Environment): string { return hashString( JSON.stringify([ env.context, env.engines, env.includeNodeModules, env.outputFormat, env.sourceType, env.isLibrary, env.shouldOptimize, env.shouldScopeHoist, env.sourceMap, ]), ); }