forked from rollup/rollup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
normalizeInputOptions.ts
257 lines (245 loc) · 7.63 KB
/
normalizeInputOptions.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
import type {
HasModuleSideEffects,
InputOptions,
ModuleSideEffectsOption,
NormalizedInputOptions,
RollupBuild
} from '../../rollup/types';
import { EMPTY_ARRAY } from '../blank';
import { ensureArray } from '../ensureArray';
import { getLogger } from '../logger';
import { LOGLEVEL_INFO } from '../logging';
import { error, logInvalidOption } from '../logs';
import { resolve } from '../path';
import { URL_JSX, URL_TREESHAKE, URL_TREESHAKE_MODULESIDEEFFECTS } from '../urls';
import {
getOnLog,
getOptionWithPreset,
jsxPresets,
normalizePluginOption,
treeshakePresets,
warnUnknownOptions
} from './options';
export interface CommandConfigObject {
[key: string]: unknown;
external: (string | RegExp)[];
globals: Record<string, string> | undefined;
}
export async function normalizeInputOptions(
config: InputOptions,
watchMode: boolean
): Promise<{
options: NormalizedInputOptions;
unsetOptions: Set<string>;
}> {
// These are options that may trigger special warnings or behaviour later
// if the user did not select an explicit value
const unsetOptions = new Set<string>();
const context = config.context ?? 'undefined';
const plugins = await normalizePluginOption(config.plugins);
const logLevel = config.logLevel || LOGLEVEL_INFO;
const onLog = getLogger(plugins, getOnLog(config, logLevel), watchMode, logLevel);
const strictDeprecations = config.strictDeprecations || false;
const maxParallelFileOps = getMaxParallelFileOps(config);
const options: NormalizedInputOptions & InputOptions = {
cache: getCache(config),
context,
experimentalCacheExpiry: config.experimentalCacheExpiry ?? 10,
experimentalLogSideEffects: config.experimentalLogSideEffects || false,
external: getIdMatcher(config.external),
input: getInput(config),
jsx: getJsx(config),
logLevel,
makeAbsoluteExternalsRelative: config.makeAbsoluteExternalsRelative ?? 'ifRelativeSource',
maxParallelFileOps,
moduleContext: getModuleContext(config, context),
onLog,
perf: config.perf || false,
plugins,
preserveEntrySignatures: config.preserveEntrySignatures ?? 'exports-only',
preserveSymlinks: config.preserveSymlinks || false,
shimMissingExports: config.shimMissingExports || false,
strictDeprecations,
treeshake: getTreeshake(config)
};
warnUnknownOptions(
config,
[...Object.keys(options), 'onwarn', 'watch'],
'input options',
onLog,
/^(output)$/
);
return { options, unsetOptions };
}
const getCache = (config: InputOptions): NormalizedInputOptions['cache'] =>
config.cache === true // `true` is the default
? undefined
: (config.cache as unknown as RollupBuild)?.cache || config.cache;
const getIdMatcher = <T extends any[]>(
option:
| undefined
| boolean
| string
| RegExp
| (string | RegExp)[]
| ((id: string, ...parameters: T) => boolean | null | void)
): ((id: string, ...parameters: T) => boolean) => {
if (option === true) {
return () => true;
}
if (typeof option === 'function') {
return (id, ...parameters) => (!id.startsWith('\0') && option(id, ...parameters)) || false;
}
if (option) {
const ids = new Set<string>();
const matchers: RegExp[] = [];
for (const value of ensureArray(option)) {
if (value instanceof RegExp) {
matchers.push(value);
} else {
ids.add(value);
}
}
return (id: string, ..._arguments) => ids.has(id) || matchers.some(matcher => matcher.test(id));
}
return () => false;
};
const getInput = (config: InputOptions): NormalizedInputOptions['input'] => {
const configInput = config.input;
return configInput == null ? [] : typeof configInput === 'string' ? [configInput] : configInput;
};
const getJsx = (config: InputOptions): NormalizedInputOptions['jsx'] => {
const configJsx = config.jsx;
if (!configJsx) return false;
const configWithPreset = getOptionWithPreset(configJsx, jsxPresets, 'jsx', URL_JSX, 'false, ');
const { factory, importSource, mode } = configWithPreset;
switch (mode) {
case 'automatic': {
return {
factory: factory || 'React.createElement',
importSource: importSource || 'react',
jsxImportSource: configWithPreset.jsxImportSource || 'react/jsx-runtime',
mode: 'automatic'
};
}
case 'preserve': {
if (importSource && !(factory || configWithPreset.fragment)) {
error(
logInvalidOption(
'jsx',
URL_JSX,
'when preserving JSX and specifying an importSource, you also need to specify a factory or fragment'
)
);
}
return {
factory: factory || null,
fragment: configWithPreset.fragment || null,
importSource: importSource || null,
mode: 'preserve'
};
}
// case 'classic':
default: {
if (mode && mode !== 'classic') {
error(
logInvalidOption(
'jsx.mode',
URL_JSX,
'mode must be "automatic", "classic" or "preserve"',
mode
)
);
}
return {
factory: factory || 'React.createElement',
fragment: configWithPreset.fragment || 'React.Fragment',
importSource: importSource || null,
mode: 'classic'
};
}
}
};
const getMaxParallelFileOps = (
config: InputOptions
): NormalizedInputOptions['maxParallelFileOps'] => {
const maxParallelFileOps = config.maxParallelFileOps;
if (typeof maxParallelFileOps === 'number') {
if (maxParallelFileOps <= 0) return Infinity;
return maxParallelFileOps;
}
return 20;
};
const getModuleContext = (
config: InputOptions,
context: string
): NormalizedInputOptions['moduleContext'] => {
const configModuleContext = config.moduleContext;
if (typeof configModuleContext === 'function') {
return id => configModuleContext(id) ?? context;
}
if (configModuleContext) {
const contextByModuleId: Record<string, string> = Object.create(null);
for (const [key, moduleContext] of Object.entries(configModuleContext)) {
contextByModuleId[resolve(key)] = moduleContext;
}
return id => contextByModuleId[id] ?? context;
}
return () => context;
};
const getTreeshake = (config: InputOptions): NormalizedInputOptions['treeshake'] => {
const configTreeshake = config.treeshake;
if (configTreeshake === false) {
return false;
}
const configWithPreset = getOptionWithPreset(
config.treeshake,
treeshakePresets,
'treeshake',
URL_TREESHAKE,
'false, true, '
);
return {
annotations: configWithPreset.annotations !== false,
correctVarValueBeforeDeclaration: configWithPreset.correctVarValueBeforeDeclaration === true,
manualPureFunctions:
(configWithPreset.manualPureFunctions as readonly string[] | undefined) ?? EMPTY_ARRAY,
moduleSideEffects: getHasModuleSideEffects(
configWithPreset.moduleSideEffects as ModuleSideEffectsOption | undefined
),
propertyReadSideEffects:
configWithPreset.propertyReadSideEffects === 'always'
? 'always'
: configWithPreset.propertyReadSideEffects !== false,
tryCatchDeoptimization: configWithPreset.tryCatchDeoptimization !== false,
unknownGlobalSideEffects: configWithPreset.unknownGlobalSideEffects !== false
};
};
const getHasModuleSideEffects = (
moduleSideEffectsOption: ModuleSideEffectsOption | undefined
): HasModuleSideEffects => {
if (typeof moduleSideEffectsOption === 'boolean') {
return () => moduleSideEffectsOption;
}
if (moduleSideEffectsOption === 'no-external') {
return (_id, external) => !external;
}
if (typeof moduleSideEffectsOption === 'function') {
return (id, external) =>
id.startsWith('\0') ? true : moduleSideEffectsOption(id, external) !== false;
}
if (Array.isArray(moduleSideEffectsOption)) {
const ids = new Set(moduleSideEffectsOption);
return id => ids.has(id);
}
if (moduleSideEffectsOption) {
error(
logInvalidOption(
'treeshake.moduleSideEffects',
URL_TREESHAKE_MODULESIDEEFFECTS,
'please use one of false, "no-external", a function or an array'
)
);
}
return () => true;
};