rollup 3.0.1 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/rollup +41 -39
- package/dist/es/rollup.js +3 -2
- package/dist/es/shared/rollup.js +1216 -846
- package/dist/es/shared/watch.js +17 -173
- package/dist/loadConfigFile.js +4 -5
- package/dist/rollup.d.ts +29 -14
- package/dist/rollup.js +3 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +68 -229
- package/dist/shared/rollup.js +1251 -857
- package/dist/shared/watch-cli.js +32 -32
- package/dist/shared/watch.js +16 -14
- package/package.json +2 -1
- package/dist/shared/mergeOptions.js +0 -182
package/dist/es/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v3.0
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.2.0
|
|
4
|
+
Sat, 15 Oct 2022 04:47:20 GMT - commit 585de6d1bc569c4f1d49654cae1044cefa277fb7
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import { resolve } from 'node:path';
|
|
11
11
|
import process$1 from 'node:process';
|
|
12
|
-
import {
|
|
12
|
+
import { picomatch as picomatch$2, getAugmentedNamespace, fseventsImporter, createFilter, rollupInternal } from './rollup.js';
|
|
13
13
|
import { platform } from 'node:os';
|
|
14
14
|
import require$$0$1 from 'fs';
|
|
15
15
|
import require$$2 from 'util';
|
|
@@ -21,165 +21,7 @@ import 'node:perf_hooks';
|
|
|
21
21
|
import 'node:crypto';
|
|
22
22
|
import 'node:fs';
|
|
23
23
|
import 'node:events';
|
|
24
|
-
|
|
25
|
-
const commandAliases = {
|
|
26
|
-
c: 'config',
|
|
27
|
-
d: 'dir',
|
|
28
|
-
e: 'external',
|
|
29
|
-
f: 'format',
|
|
30
|
-
g: 'globals',
|
|
31
|
-
h: 'help',
|
|
32
|
-
i: 'input',
|
|
33
|
-
m: 'sourcemap',
|
|
34
|
-
n: 'name',
|
|
35
|
-
o: 'file',
|
|
36
|
-
p: 'plugin',
|
|
37
|
-
v: 'version',
|
|
38
|
-
w: 'watch'
|
|
39
|
-
};
|
|
40
|
-
function mergeOptions(config, rawCommandOptions = { external: [], globals: undefined }, defaultOnWarnHandler = defaultOnWarn) {
|
|
41
|
-
const command = getCommandOptions(rawCommandOptions);
|
|
42
|
-
const inputOptions = mergeInputOptions(config, command, defaultOnWarnHandler);
|
|
43
|
-
const warn = inputOptions.onwarn;
|
|
44
|
-
if (command.output) {
|
|
45
|
-
Object.assign(command, command.output);
|
|
46
|
-
}
|
|
47
|
-
const outputOptionsArray = ensureArray(config.output);
|
|
48
|
-
if (outputOptionsArray.length === 0)
|
|
49
|
-
outputOptionsArray.push({});
|
|
50
|
-
const outputOptions = outputOptionsArray.map(singleOutputOptions => mergeOutputOptions(singleOutputOptions, command, warn));
|
|
51
|
-
warnUnknownOptions(command, Object.keys(inputOptions).concat(Object.keys(outputOptions[0]).filter(option => option !== 'sourcemapPathTransform'), Object.keys(commandAliases), 'bundleConfigAsCjs', 'config', 'environment', 'plugin', 'silent', 'failAfterWarnings', 'stdin', 'waitForBundleInput', 'configPlugin'), 'CLI flags', warn, /^_$|output$|config/);
|
|
52
|
-
inputOptions.output = outputOptions;
|
|
53
|
-
return inputOptions;
|
|
54
|
-
}
|
|
55
|
-
function getCommandOptions(rawCommandOptions) {
|
|
56
|
-
const external = rawCommandOptions.external && typeof rawCommandOptions.external === 'string'
|
|
57
|
-
? rawCommandOptions.external.split(',')
|
|
58
|
-
: [];
|
|
59
|
-
return {
|
|
60
|
-
...rawCommandOptions,
|
|
61
|
-
external,
|
|
62
|
-
globals: typeof rawCommandOptions.globals === 'string'
|
|
63
|
-
? rawCommandOptions.globals.split(',').reduce((globals, globalDefinition) => {
|
|
64
|
-
const [id, variableName] = globalDefinition.split(':');
|
|
65
|
-
globals[id] = variableName;
|
|
66
|
-
if (!external.includes(id)) {
|
|
67
|
-
external.push(id);
|
|
68
|
-
}
|
|
69
|
-
return globals;
|
|
70
|
-
}, Object.create(null))
|
|
71
|
-
: undefined
|
|
72
|
-
};
|
|
73
|
-
}
|
|
74
|
-
function mergeInputOptions(config, overrides, defaultOnWarnHandler) {
|
|
75
|
-
const getOption = (name) => overrides[name] ?? config[name];
|
|
76
|
-
const inputOptions = {
|
|
77
|
-
acorn: getOption('acorn'),
|
|
78
|
-
acornInjectPlugins: config.acornInjectPlugins,
|
|
79
|
-
cache: config.cache,
|
|
80
|
-
context: getOption('context'),
|
|
81
|
-
experimentalCacheExpiry: getOption('experimentalCacheExpiry'),
|
|
82
|
-
external: getExternal(config, overrides),
|
|
83
|
-
inlineDynamicImports: getOption('inlineDynamicImports'),
|
|
84
|
-
input: getOption('input') || [],
|
|
85
|
-
makeAbsoluteExternalsRelative: getOption('makeAbsoluteExternalsRelative'),
|
|
86
|
-
manualChunks: getOption('manualChunks'),
|
|
87
|
-
maxParallelFileOps: getOption('maxParallelFileOps'),
|
|
88
|
-
maxParallelFileReads: getOption('maxParallelFileReads'),
|
|
89
|
-
moduleContext: getOption('moduleContext'),
|
|
90
|
-
onwarn: getOnWarn(config, defaultOnWarnHandler),
|
|
91
|
-
perf: getOption('perf'),
|
|
92
|
-
plugins: ensureArray(config.plugins),
|
|
93
|
-
preserveEntrySignatures: getOption('preserveEntrySignatures'),
|
|
94
|
-
preserveModules: getOption('preserveModules'),
|
|
95
|
-
preserveSymlinks: getOption('preserveSymlinks'),
|
|
96
|
-
shimMissingExports: getOption('shimMissingExports'),
|
|
97
|
-
strictDeprecations: getOption('strictDeprecations'),
|
|
98
|
-
treeshake: getObjectOption(config, overrides, 'treeshake', objectifyOptionWithPresets(treeshakePresets, 'treeshake', 'false, true, ')),
|
|
99
|
-
watch: getWatch(config, overrides)
|
|
100
|
-
};
|
|
101
|
-
warnUnknownOptions(config, Object.keys(inputOptions), 'input options', inputOptions.onwarn, /^output$/);
|
|
102
|
-
return inputOptions;
|
|
103
|
-
}
|
|
104
|
-
const getExternal = (config, overrides) => {
|
|
105
|
-
const configExternal = config.external;
|
|
106
|
-
return typeof configExternal === 'function'
|
|
107
|
-
? (source, importer, isResolved) => configExternal(source, importer, isResolved) || overrides.external.includes(source)
|
|
108
|
-
: ensureArray(configExternal).concat(overrides.external);
|
|
109
|
-
};
|
|
110
|
-
const getOnWarn = (config, defaultOnWarnHandler) => config.onwarn
|
|
111
|
-
? warning => config.onwarn(warning, defaultOnWarnHandler)
|
|
112
|
-
: defaultOnWarnHandler;
|
|
113
|
-
const getObjectOption = (config, overrides, name, objectifyValue = objectifyOption) => {
|
|
114
|
-
const commandOption = normalizeObjectOptionValue(overrides[name], objectifyValue);
|
|
115
|
-
const configOption = normalizeObjectOptionValue(config[name], objectifyValue);
|
|
116
|
-
if (commandOption !== undefined) {
|
|
117
|
-
return commandOption && { ...configOption, ...commandOption };
|
|
118
|
-
}
|
|
119
|
-
return configOption;
|
|
120
|
-
};
|
|
121
|
-
const getWatch = (config, overrides) => config.watch !== false && getObjectOption(config, overrides, 'watch');
|
|
122
|
-
const normalizeObjectOptionValue = (optionValue, objectifyValue) => {
|
|
123
|
-
if (!optionValue) {
|
|
124
|
-
return optionValue;
|
|
125
|
-
}
|
|
126
|
-
if (Array.isArray(optionValue)) {
|
|
127
|
-
return optionValue.reduce((result, value) => value && result && { ...result, ...objectifyValue(value) }, {});
|
|
128
|
-
}
|
|
129
|
-
return objectifyValue(optionValue);
|
|
130
|
-
};
|
|
131
|
-
function mergeOutputOptions(config, overrides, warn) {
|
|
132
|
-
const getOption = (name) => overrides[name] ?? config[name];
|
|
133
|
-
const outputOptions = {
|
|
134
|
-
amd: getObjectOption(config, overrides, 'amd'),
|
|
135
|
-
assetFileNames: getOption('assetFileNames'),
|
|
136
|
-
banner: getOption('banner'),
|
|
137
|
-
chunkFileNames: getOption('chunkFileNames'),
|
|
138
|
-
compact: getOption('compact'),
|
|
139
|
-
dir: getOption('dir'),
|
|
140
|
-
dynamicImportFunction: getOption('dynamicImportFunction'),
|
|
141
|
-
dynamicImportInCjs: getOption('dynamicImportInCjs'),
|
|
142
|
-
entryFileNames: getOption('entryFileNames'),
|
|
143
|
-
esModule: getOption('esModule'),
|
|
144
|
-
exports: getOption('exports'),
|
|
145
|
-
extend: getOption('extend'),
|
|
146
|
-
externalImportAssertions: getOption('externalImportAssertions'),
|
|
147
|
-
externalLiveBindings: getOption('externalLiveBindings'),
|
|
148
|
-
file: getOption('file'),
|
|
149
|
-
footer: getOption('footer'),
|
|
150
|
-
format: getOption('format'),
|
|
151
|
-
freeze: getOption('freeze'),
|
|
152
|
-
generatedCode: getObjectOption(config, overrides, 'generatedCode', objectifyOptionWithPresets(generatedCodePresets, 'output.generatedCode', '')),
|
|
153
|
-
globals: getOption('globals'),
|
|
154
|
-
hoistTransitiveImports: getOption('hoistTransitiveImports'),
|
|
155
|
-
indent: getOption('indent'),
|
|
156
|
-
inlineDynamicImports: getOption('inlineDynamicImports'),
|
|
157
|
-
interop: getOption('interop'),
|
|
158
|
-
intro: getOption('intro'),
|
|
159
|
-
manualChunks: getOption('manualChunks'),
|
|
160
|
-
minifyInternalExports: getOption('minifyInternalExports'),
|
|
161
|
-
name: getOption('name'),
|
|
162
|
-
namespaceToStringTag: getOption('namespaceToStringTag'),
|
|
163
|
-
noConflict: getOption('noConflict'),
|
|
164
|
-
outro: getOption('outro'),
|
|
165
|
-
paths: getOption('paths'),
|
|
166
|
-
plugins: ensureArray(config.plugins),
|
|
167
|
-
preferConst: getOption('preferConst'),
|
|
168
|
-
preserveModules: getOption('preserveModules'),
|
|
169
|
-
preserveModulesRoot: getOption('preserveModulesRoot'),
|
|
170
|
-
sanitizeFileName: getOption('sanitizeFileName'),
|
|
171
|
-
sourcemap: getOption('sourcemap'),
|
|
172
|
-
sourcemapBaseUrl: getOption('sourcemapBaseUrl'),
|
|
173
|
-
sourcemapExcludeSources: getOption('sourcemapExcludeSources'),
|
|
174
|
-
sourcemapFile: getOption('sourcemapFile'),
|
|
175
|
-
sourcemapPathTransform: getOption('sourcemapPathTransform'),
|
|
176
|
-
strict: getOption('strict'),
|
|
177
|
-
systemNullSetters: getOption('systemNullSetters'),
|
|
178
|
-
validate: getOption('validate')
|
|
179
|
-
};
|
|
180
|
-
warnUnknownOptions(config, Object.keys(outputOptions), 'output options', warn);
|
|
181
|
-
return outputOptions;
|
|
182
|
-
}
|
|
24
|
+
import 'tty';
|
|
183
25
|
|
|
184
26
|
var chokidar = {};
|
|
185
27
|
|
|
@@ -4801,7 +4643,7 @@ const eventsRewrites = {
|
|
|
4801
4643
|
}
|
|
4802
4644
|
};
|
|
4803
4645
|
class Watcher {
|
|
4804
|
-
constructor(
|
|
4646
|
+
constructor(optionsList, emitter) {
|
|
4805
4647
|
this.buildDelay = 0;
|
|
4806
4648
|
this.buildTimeout = null;
|
|
4807
4649
|
this.closed = false;
|
|
@@ -4810,10 +4652,12 @@ class Watcher {
|
|
|
4810
4652
|
this.running = true;
|
|
4811
4653
|
this.emitter = emitter;
|
|
4812
4654
|
emitter.close = this.close.bind(this);
|
|
4813
|
-
this.tasks =
|
|
4814
|
-
|
|
4815
|
-
|
|
4816
|
-
|
|
4655
|
+
this.tasks = optionsList.map(options => new Task(this, options));
|
|
4656
|
+
for (const { watch } of optionsList) {
|
|
4657
|
+
if (watch && typeof watch.buildDelay === 'number') {
|
|
4658
|
+
this.buildDelay = Math.max(this.buildDelay, watch.buildDelay);
|
|
4659
|
+
}
|
|
4660
|
+
}
|
|
4817
4661
|
process$1.nextTick(() => this.run());
|
|
4818
4662
|
}
|
|
4819
4663
|
async close() {
|
|
@@ -4830,8 +4674,8 @@ class Watcher {
|
|
|
4830
4674
|
}
|
|
4831
4675
|
invalidate(file) {
|
|
4832
4676
|
if (file) {
|
|
4833
|
-
const
|
|
4834
|
-
const event =
|
|
4677
|
+
const previousEvent = this.invalidatedIds.get(file.id);
|
|
4678
|
+
const event = previousEvent ? eventsRewrites[previousEvent][file.event] : file.event;
|
|
4835
4679
|
if (event === 'buggy') {
|
|
4836
4680
|
//TODO: throws or warn? Currently just ignore, uses new event
|
|
4837
4681
|
this.invalidatedIds.set(file.id, file.event);
|
|
@@ -4890,15 +4734,15 @@ class Watcher {
|
|
|
4890
4734
|
}
|
|
4891
4735
|
}
|
|
4892
4736
|
class Task {
|
|
4893
|
-
constructor(watcher,
|
|
4737
|
+
constructor(watcher, options) {
|
|
4894
4738
|
this.cache = { modules: [] };
|
|
4895
4739
|
this.watchFiles = [];
|
|
4896
4740
|
this.closed = false;
|
|
4897
4741
|
this.invalidated = true;
|
|
4898
4742
|
this.watched = new Set();
|
|
4899
4743
|
this.watcher = watcher;
|
|
4900
|
-
this.
|
|
4901
|
-
this.
|
|
4744
|
+
this.options = options;
|
|
4745
|
+
this.skipWrite = Boolean(options.watch && options.watch.skipWrite);
|
|
4902
4746
|
this.outputs = this.options.output;
|
|
4903
4747
|
this.outputFiles = this.outputs.map(output => {
|
|
4904
4748
|
if (output.file || output.dir)
|
|
@@ -5000,7 +4844,7 @@ class Task {
|
|
|
5000
4844
|
if (!this.filter(id))
|
|
5001
4845
|
return;
|
|
5002
4846
|
this.watched.add(id);
|
|
5003
|
-
if (this.outputFiles.
|
|
4847
|
+
if (this.outputFiles.includes(id)) {
|
|
5004
4848
|
throw new Error('Cannot import the generated bundle');
|
|
5005
4849
|
}
|
|
5006
4850
|
// this is necessary to ensure that any 'renamed' files
|
package/dist/loadConfigFile.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v3.0
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.2.0
|
|
4
|
+
Sat, 15 Oct 2022 04:47:20 GMT - commit 585de6d1bc569c4f1d49654cae1044cefa277fb7
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -15,14 +15,13 @@ require('node:fs');
|
|
|
15
15
|
require('node:path');
|
|
16
16
|
require('node:process');
|
|
17
17
|
require('node:url');
|
|
18
|
-
const loadConfigFile_js = require('./shared/loadConfigFile.js');
|
|
19
18
|
require('./shared/rollup.js');
|
|
20
|
-
require('./shared/
|
|
21
|
-
require('tty');
|
|
19
|
+
const loadConfigFile_js = require('./shared/loadConfigFile.js');
|
|
22
20
|
require('path');
|
|
23
21
|
require('node:perf_hooks');
|
|
24
22
|
require('node:crypto');
|
|
25
23
|
require('node:events');
|
|
24
|
+
require('tty');
|
|
26
25
|
|
|
27
26
|
|
|
28
27
|
|
package/dist/rollup.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
export const VERSION: string;
|
|
2
2
|
|
|
3
|
+
type FalsyValue = false | null | undefined;
|
|
4
|
+
type MaybeArray<T> = T | T[];
|
|
5
|
+
type MaybePromise<T> = T | Promise<T>;
|
|
6
|
+
|
|
3
7
|
export interface RollupError extends RollupLog {
|
|
4
8
|
name?: string;
|
|
5
9
|
stack?: string;
|
|
@@ -176,7 +180,7 @@ export interface PluginContext extends MinimalPluginContext {
|
|
|
176
180
|
addWatchFile: (id: string) => void;
|
|
177
181
|
cache: PluginCache;
|
|
178
182
|
emitFile: EmitFile;
|
|
179
|
-
error: (
|
|
183
|
+
error: (error: RollupError | string, pos?: number | { column: number; line: number }) => never;
|
|
180
184
|
getFileName: (fileReferenceId: string) => string;
|
|
181
185
|
getModuleIds: () => IterableIterator<string>;
|
|
182
186
|
getModuleInfo: GetModuleInfo;
|
|
@@ -287,7 +291,7 @@ export type ResolveDynamicImportHook = (
|
|
|
287
291
|
|
|
288
292
|
export type ResolveImportMetaHook = (
|
|
289
293
|
this: PluginContext,
|
|
290
|
-
|
|
294
|
+
property: string | null,
|
|
291
295
|
options: { chunkId: string; format: InternalModuleFormat; moduleId: string }
|
|
292
296
|
) => string | null | void;
|
|
293
297
|
|
|
@@ -335,7 +339,7 @@ export interface OutputBundle {
|
|
|
335
339
|
|
|
336
340
|
export interface FunctionPluginHooks {
|
|
337
341
|
augmentChunkHash: (this: PluginContext, chunk: RenderedChunk) => string | void;
|
|
338
|
-
buildEnd: (this: PluginContext,
|
|
342
|
+
buildEnd: (this: PluginContext, error?: Error) => void;
|
|
339
343
|
buildStart: (this: PluginContext, options: NormalizedInputOptions) => void;
|
|
340
344
|
closeBundle: (this: PluginContext) => void;
|
|
341
345
|
closeWatcher: (this: PluginContext) => void;
|
|
@@ -359,7 +363,7 @@ export interface FunctionPluginHooks {
|
|
|
359
363
|
targetModuleId: string | null;
|
|
360
364
|
}
|
|
361
365
|
) => { left: string; right: string } | null | void;
|
|
362
|
-
renderError: (this: PluginContext,
|
|
366
|
+
renderError: (this: PluginContext, error?: Error) => void;
|
|
363
367
|
renderStart: (
|
|
364
368
|
this: PluginContext,
|
|
365
369
|
outputOptions: NormalizedOutputOptions,
|
|
@@ -426,8 +430,11 @@ export type ParallelPluginHooks = Exclude<
|
|
|
426
430
|
|
|
427
431
|
export type AddonHooks = 'banner' | 'footer' | 'intro' | 'outro';
|
|
428
432
|
|
|
429
|
-
type MakeAsync<
|
|
430
|
-
|
|
433
|
+
type MakeAsync<Function_> = Function_ extends (
|
|
434
|
+
this: infer This,
|
|
435
|
+
...parameters: infer Arguments
|
|
436
|
+
) => infer Return
|
|
437
|
+
? (this: This, ...parameters: Arguments) => Return | Promise<Return>
|
|
431
438
|
: never;
|
|
432
439
|
|
|
433
440
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
@@ -492,6 +499,8 @@ export type SourcemapPathTransformOption = (
|
|
|
492
499
|
sourcemapPath: string
|
|
493
500
|
) => string;
|
|
494
501
|
|
|
502
|
+
export type InputPluginOption = MaybePromise<Plugin | FalsyValue | InputPluginOption[]>;
|
|
503
|
+
|
|
495
504
|
export interface InputOptions {
|
|
496
505
|
acorn?: Record<string, unknown>;
|
|
497
506
|
acornInjectPlugins?: (() => unknown)[] | (() => unknown);
|
|
@@ -511,7 +520,7 @@ export interface InputOptions {
|
|
|
511
520
|
moduleContext?: ((id: string) => string | null | void) | { [id: string]: string };
|
|
512
521
|
onwarn?: WarningHandlerWithDefault;
|
|
513
522
|
perf?: boolean;
|
|
514
|
-
plugins?:
|
|
523
|
+
plugins?: InputPluginOption;
|
|
515
524
|
preserveEntrySignatures?: PreserveEntrySignaturesOption;
|
|
516
525
|
/** @deprecated Use the "preserveModules" output option instead. */
|
|
517
526
|
preserveModules?: boolean;
|
|
@@ -522,6 +531,10 @@ export interface InputOptions {
|
|
|
522
531
|
watch?: WatcherOptions | false;
|
|
523
532
|
}
|
|
524
533
|
|
|
534
|
+
export interface InputOptionsWithPlugins extends InputOptions {
|
|
535
|
+
plugins: Plugin[];
|
|
536
|
+
}
|
|
537
|
+
|
|
525
538
|
export interface NormalizedInputOptions {
|
|
526
539
|
acorn: Record<string, unknown>;
|
|
527
540
|
acornInjectPlugins: (() => unknown)[];
|
|
@@ -610,6 +623,8 @@ export type NormalizedAmdOptions = (
|
|
|
610
623
|
|
|
611
624
|
type AddonFunction = (chunk: RenderedChunk) => string | Promise<string>;
|
|
612
625
|
|
|
626
|
+
type OutputPluginOption = MaybePromise<OutputPlugin | FalsyValue | OutputPluginOption[]>;
|
|
627
|
+
|
|
613
628
|
export interface OutputOptions {
|
|
614
629
|
amd?: AmdOptions;
|
|
615
630
|
assetFileNames?: string | ((chunkInfo: PreRenderedAsset) => string);
|
|
@@ -647,7 +662,7 @@ export interface OutputOptions {
|
|
|
647
662
|
noConflict?: boolean;
|
|
648
663
|
outro?: string | AddonFunction;
|
|
649
664
|
paths?: OptionsPaths;
|
|
650
|
-
plugins?:
|
|
665
|
+
plugins?: OutputPluginOption;
|
|
651
666
|
/** @deprecated Use "generatedCode.constBindings" instead. */
|
|
652
667
|
preferConst?: boolean;
|
|
653
668
|
preserveModules?: boolean;
|
|
@@ -800,7 +815,7 @@ export interface RollupOptions extends InputOptions {
|
|
|
800
815
|
output?: OutputOptions | OutputOptions[];
|
|
801
816
|
}
|
|
802
817
|
|
|
803
|
-
export interface MergedRollupOptions extends
|
|
818
|
+
export interface MergedRollupOptions extends InputOptionsWithPlugins {
|
|
804
819
|
output: OutputOptions[];
|
|
805
820
|
}
|
|
806
821
|
|
|
@@ -846,13 +861,13 @@ export interface RollupWatchOptions extends InputOptions {
|
|
|
846
861
|
}
|
|
847
862
|
|
|
848
863
|
export type AwaitedEventListener<
|
|
849
|
-
T extends { [event: string]: (...
|
|
864
|
+
T extends { [event: string]: (...parameters: any) => any },
|
|
850
865
|
K extends keyof T
|
|
851
|
-
> = (...
|
|
866
|
+
> = (...parameters: Parameters<T[K]>) => void | Promise<void>;
|
|
852
867
|
|
|
853
|
-
export interface AwaitingEventEmitter<T extends { [event: string]: (...
|
|
868
|
+
export interface AwaitingEventEmitter<T extends { [event: string]: (...parameters: any) => any }> {
|
|
854
869
|
close(): Promise<void>;
|
|
855
|
-
emit<K extends keyof T>(event: K, ...
|
|
870
|
+
emit<K extends keyof T>(event: K, ...parameters: Parameters<T[K]>): Promise<unknown>;
|
|
856
871
|
/**
|
|
857
872
|
* Removes an event listener.
|
|
858
873
|
*/
|
|
@@ -872,7 +887,7 @@ export interface AwaitingEventEmitter<T extends { [event: string]: (...args: any
|
|
|
872
887
|
*/
|
|
873
888
|
onCurrentRun<K extends keyof T>(
|
|
874
889
|
event: K,
|
|
875
|
-
listener: (...
|
|
890
|
+
listener: (...parameters: Parameters<T[K]>) => Promise<ReturnType<T[K]>>
|
|
876
891
|
): this;
|
|
877
892
|
removeAllListeners(): this;
|
|
878
893
|
removeListenersForCurrentRun(): this;
|
package/dist/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v3.0
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.2.0
|
|
4
|
+
Sat, 15 Oct 2022 04:47:20 GMT - commit 585de6d1bc569c4f1d49654cae1044cefa277fb7
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -19,6 +19,7 @@ require('node:perf_hooks');
|
|
|
19
19
|
require('node:crypto');
|
|
20
20
|
require('node:fs');
|
|
21
21
|
require('node:events');
|
|
22
|
+
require('tty');
|
|
22
23
|
|
|
23
24
|
|
|
24
25
|
|
package/dist/shared/index.js
CHANGED