rollup 4.0.0-1 → 4.0.0-2

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.
@@ -0,0 +1,560 @@
1
+ /*
2
+ @license
3
+ Rollup.js v4.0.0-2
4
+ Tue, 01 Aug 2023 11:16:13 GMT - commit d62558dbc45912c9c4478dc761bb290738c3b968
5
+
6
+ https://github.com/rollup/rollup
7
+
8
+ Released under the MIT License.
9
+ */
10
+ 'use strict';
11
+
12
+ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
13
+
14
+ const promises = require('node:fs/promises');
15
+ const process$2 = require('node:process');
16
+ const index = require('./index.js');
17
+ const cli = require('../bin/rollup');
18
+ const rollup = require('./rollup.js');
19
+ const loadConfigFile_js = require('./loadConfigFile.js');
20
+ const node_child_process = require('node:child_process');
21
+ const watchProxy = require('./watch-proxy.js');
22
+ require('fs');
23
+ require('util');
24
+ require('stream');
25
+ require('path');
26
+ require('os');
27
+ require('./fsevents-importer.js');
28
+ require('events');
29
+ require('node:path');
30
+ require('tty');
31
+ require('node:perf_hooks');
32
+ require('node:crypto');
33
+ require('../native');
34
+ require('node:url');
35
+ require('../getLogFilter.js');
36
+
37
+ function timeZone(date = new Date()) {
38
+ const offset = date.getTimezoneOffset();
39
+ const absOffset = Math.abs(offset);
40
+ const hours = Math.floor(absOffset / 60);
41
+ const minutes = absOffset % 60;
42
+ const minutesOut = minutes > 0 ? ':' + ('0' + minutes).slice(-2) : '';
43
+ return (offset < 0 ? '+' : '-') + hours + minutesOut;
44
+ }
45
+
46
+ function dateTime(options = {}) {
47
+ let {
48
+ date = new Date(),
49
+ local = true,
50
+ showTimeZone = false,
51
+ showMilliseconds = false
52
+ } = options;
53
+
54
+ if (local) {
55
+ // Offset the date so it will return the correct value when getting the ISO string.
56
+ date = new Date(date.getTime() - (date.getTimezoneOffset() * 60000));
57
+ }
58
+
59
+ let end = '';
60
+
61
+ if (showTimeZone) {
62
+ end = ' UTC' + (local ? timeZone(date) : '');
63
+ }
64
+
65
+ if (showMilliseconds && date.getUTCMilliseconds() > 0) {
66
+ end = ` ${date.getUTCMilliseconds()}ms${end}`;
67
+ }
68
+
69
+ return date
70
+ .toISOString()
71
+ .replace(/T/, ' ')
72
+ .replace(/\..+/, end);
73
+ }
74
+
75
+ /**
76
+ * This is not the set of all possible signals.
77
+ *
78
+ * It IS, however, the set of all signals that trigger
79
+ * an exit on either Linux or BSD systems. Linux is a
80
+ * superset of the signal names supported on BSD, and
81
+ * the unknown signals just fail to register, so we can
82
+ * catch that easily enough.
83
+ *
84
+ * Windows signals are a different set, since there are
85
+ * signals that terminate Windows processes, but don't
86
+ * terminate (or don't even exist) on Posix systems.
87
+ *
88
+ * Don't bother with SIGKILL. It's uncatchable, which
89
+ * means that we can't fire any callbacks anyway.
90
+ *
91
+ * If a user does happen to register a handler on a non-
92
+ * fatal signal like SIGWINCH or something, and then
93
+ * exit, it'll end up firing `process.emit('exit')`, so
94
+ * the handler will be fired anyway.
95
+ *
96
+ * SIGBUS, SIGFPE, SIGSEGV and SIGILL, when not raised
97
+ * artificially, inherently leave the process in a
98
+ * state from which it is not safe to try and enter JS
99
+ * listeners.
100
+ */
101
+ const signals = [];
102
+ signals.push('SIGHUP', 'SIGINT', 'SIGTERM');
103
+ if (process.platform !== 'win32') {
104
+ signals.push('SIGALRM', 'SIGABRT', 'SIGVTALRM', 'SIGXCPU', 'SIGXFSZ', 'SIGUSR2', 'SIGTRAP', 'SIGSYS', 'SIGQUIT', 'SIGIOT'
105
+ // should detect profiler and enable/disable accordingly.
106
+ // see #21
107
+ // 'SIGPROF'
108
+ );
109
+ }
110
+ if (process.platform === 'linux') {
111
+ signals.push('SIGIO', 'SIGPOLL', 'SIGPWR', 'SIGSTKFLT');
112
+ }
113
+ //# sourceMappingURL=signals.js.map
114
+
115
+ // Note: since nyc uses this module to output coverage, any lines
116
+ // that are in the direct sync flow of nyc's outputCoverage are
117
+ // ignored, since we can never get coverage for them.
118
+ // grab a reference to node's real process object right away
119
+ const processOk = (process) => !!process &&
120
+ typeof process === 'object' &&
121
+ typeof process.removeListener === 'function' &&
122
+ typeof process.emit === 'function' &&
123
+ typeof process.reallyExit === 'function' &&
124
+ typeof process.listeners === 'function' &&
125
+ typeof process.kill === 'function' &&
126
+ typeof process.pid === 'number' &&
127
+ typeof process.on === 'function';
128
+ const kExitEmitter = Symbol.for('signal-exit emitter');
129
+ const global = globalThis;
130
+ const ObjectDefineProperty = Object.defineProperty.bind(Object);
131
+ // teeny tiny ee
132
+ class Emitter {
133
+ emitted = {
134
+ afterExit: false,
135
+ exit: false,
136
+ };
137
+ listeners = {
138
+ afterExit: [],
139
+ exit: [],
140
+ };
141
+ count = 0;
142
+ id = Math.random();
143
+ constructor() {
144
+ if (global[kExitEmitter]) {
145
+ return global[kExitEmitter];
146
+ }
147
+ ObjectDefineProperty(global, kExitEmitter, {
148
+ value: this,
149
+ writable: false,
150
+ enumerable: false,
151
+ configurable: false,
152
+ });
153
+ }
154
+ on(ev, fn) {
155
+ this.listeners[ev].push(fn);
156
+ }
157
+ removeListener(ev, fn) {
158
+ const list = this.listeners[ev];
159
+ const i = list.indexOf(fn);
160
+ /* c8 ignore start */
161
+ if (i === -1) {
162
+ return;
163
+ }
164
+ /* c8 ignore stop */
165
+ if (i === 0 && list.length === 1) {
166
+ list.length = 0;
167
+ }
168
+ else {
169
+ list.splice(i, 1);
170
+ }
171
+ }
172
+ emit(ev, code, signal) {
173
+ if (this.emitted[ev]) {
174
+ return;
175
+ }
176
+ this.emitted[ev] = true;
177
+ for (const fn of this.listeners[ev]) {
178
+ fn(code, signal);
179
+ }
180
+ }
181
+ }
182
+ class SignalExitBase {
183
+ }
184
+ const signalExitWrap = (handler) => {
185
+ return {
186
+ onExit(cb, opts) {
187
+ return handler.onExit(cb, opts);
188
+ },
189
+ load() {
190
+ return handler.load();
191
+ },
192
+ unload() {
193
+ return handler.unload();
194
+ },
195
+ };
196
+ };
197
+ class SignalExitFallback extends SignalExitBase {
198
+ onExit() {
199
+ return () => { };
200
+ }
201
+ load() { }
202
+ unload() { }
203
+ }
204
+ class SignalExit extends SignalExitBase {
205
+ // "SIGHUP" throws an `ENOSYS` error on Windows,
206
+ // so use a supported signal instead
207
+ /* c8 ignore start */
208
+ #hupSig = process$1.platform === 'win32' ? 'SIGINT' : 'SIGHUP';
209
+ /* c8 ignore stop */
210
+ #emitter = new Emitter();
211
+ #process;
212
+ #originalProcessEmit;
213
+ #originalProcessReallyExit;
214
+ #sigListeners = {};
215
+ #loaded = false;
216
+ constructor(process) {
217
+ super();
218
+ this.#process = process;
219
+ // { <signal>: <listener fn>, ... }
220
+ this.#sigListeners = {};
221
+ for (const sig of signals) {
222
+ this.#sigListeners[sig] = () => {
223
+ // If there are no other listeners, an exit is coming!
224
+ // Simplest way: remove us and then re-send the signal.
225
+ // We know that this will kill the process, so we can
226
+ // safely emit now.
227
+ const listeners = this.#process.listeners(sig);
228
+ let { count } = this.#emitter;
229
+ // This is a workaround for the fact that signal-exit v3 and signal
230
+ // exit v4 are not aware of each other, and each will attempt to let
231
+ // the other handle it, so neither of them do. To correct this, we
232
+ // detect if we're the only handler *except* for previous versions
233
+ // of signal-exit.
234
+ /* c8 ignore start */
235
+ //@ts-ignore
236
+ if (typeof process.__signal_exit_emitter__ === 'object')
237
+ count++;
238
+ /* c8 ignore stop */
239
+ if (listeners.length === count) {
240
+ this.unload();
241
+ this.#emitter.emit('exit', null, sig);
242
+ this.#emitter.emit('afterExit', null, sig);
243
+ /* c8 ignore start */
244
+ process.kill(process.pid, sig === 'SIGHUP' ? this.#hupSig : sig);
245
+ /* c8 ignore stop */
246
+ }
247
+ };
248
+ }
249
+ this.#originalProcessReallyExit = process.reallyExit;
250
+ this.#originalProcessEmit = process.emit;
251
+ }
252
+ onExit(cb, opts) {
253
+ /* c8 ignore start */
254
+ if (!processOk(this.#process)) {
255
+ return () => { };
256
+ }
257
+ /* c8 ignore stop */
258
+ if (this.#loaded === false) {
259
+ this.load();
260
+ }
261
+ const ev = opts?.alwaysLast ? 'afterExit' : 'exit';
262
+ this.#emitter.on(ev, cb);
263
+ return () => {
264
+ this.#emitter.removeListener(ev, cb);
265
+ if (this.#emitter.listeners['exit'].length === 0 &&
266
+ this.#emitter.listeners['afterExit'].length === 0) {
267
+ this.unload();
268
+ }
269
+ };
270
+ }
271
+ load() {
272
+ if (this.#loaded) {
273
+ return;
274
+ }
275
+ this.#loaded = true;
276
+ // This is the number of onSignalExit's that are in play.
277
+ // It's important so that we can count the correct number of
278
+ // listeners on signals, and don't wait for the other one to
279
+ // handle it instead of us.
280
+ this.#emitter.count += 1;
281
+ for (const sig of signals) {
282
+ try {
283
+ const fn = this.#sigListeners[sig];
284
+ if (fn)
285
+ this.#process.on(sig, fn);
286
+ }
287
+ catch (_) { }
288
+ }
289
+ this.#process.emit = (ev, ...a) => {
290
+ return this.#processEmit(ev, ...a);
291
+ };
292
+ this.#process.reallyExit = (code) => {
293
+ return this.#processReallyExit(code);
294
+ };
295
+ }
296
+ unload() {
297
+ if (!this.#loaded) {
298
+ return;
299
+ }
300
+ this.#loaded = false;
301
+ signals.forEach(sig => {
302
+ const listener = this.#sigListeners[sig];
303
+ /* c8 ignore start */
304
+ if (!listener) {
305
+ throw new Error('Listener not defined for signal: ' + sig);
306
+ }
307
+ /* c8 ignore stop */
308
+ try {
309
+ this.#process.removeListener(sig, listener);
310
+ /* c8 ignore start */
311
+ }
312
+ catch (_) { }
313
+ /* c8 ignore stop */
314
+ });
315
+ this.#process.emit = this.#originalProcessEmit;
316
+ this.#process.reallyExit = this.#originalProcessReallyExit;
317
+ this.#emitter.count -= 1;
318
+ }
319
+ #processReallyExit(code) {
320
+ /* c8 ignore start */
321
+ if (!processOk(this.#process)) {
322
+ return 0;
323
+ }
324
+ this.#process.exitCode = code || 0;
325
+ /* c8 ignore stop */
326
+ this.#emitter.emit('exit', this.#process.exitCode, null);
327
+ this.#emitter.emit('afterExit', this.#process.exitCode, null);
328
+ return this.#originalProcessReallyExit.call(this.#process, this.#process.exitCode);
329
+ }
330
+ #processEmit(ev, ...args) {
331
+ const og = this.#originalProcessEmit;
332
+ if (ev === 'exit' && processOk(this.#process)) {
333
+ if (typeof args[0] === 'number') {
334
+ this.#process.exitCode = args[0];
335
+ /* c8 ignore start */
336
+ }
337
+ /* c8 ignore start */
338
+ const ret = og.call(this.#process, ev, ...args);
339
+ /* c8 ignore start */
340
+ this.#emitter.emit('exit', this.#process.exitCode, null);
341
+ this.#emitter.emit('afterExit', this.#process.exitCode, null);
342
+ /* c8 ignore stop */
343
+ return ret;
344
+ }
345
+ else {
346
+ return og.call(this.#process, ev, ...args);
347
+ }
348
+ }
349
+ }
350
+ const process$1 = globalThis.process;
351
+ // wrap so that we call the method on the actual handler, without
352
+ // exporting it directly.
353
+ const {
354
+ /**
355
+ * Called when the process is exiting, whether via signal, explicit
356
+ * exit, or running out of stuff to do.
357
+ *
358
+ * If the global process object is not suitable for instrumentation,
359
+ * then this will be a no-op.
360
+ *
361
+ * Returns a function that may be used to unload signal-exit.
362
+ */
363
+ onExit,
364
+ /**
365
+ * Load the listeners. Likely you never need to call this, unless
366
+ * doing a rather deep integration with signal-exit functionality.
367
+ * Mostly exposed for the benefit of testing.
368
+ *
369
+ * @internal
370
+ */
371
+ load,
372
+ /**
373
+ * Unload the listeners. Likely you never need to call this, unless
374
+ * doing a rather deep integration with signal-exit functionality.
375
+ * Mostly exposed for the benefit of testing.
376
+ *
377
+ * @internal
378
+ */
379
+ unload, } = signalExitWrap(processOk(process$1) ? new SignalExit(process$1) : new SignalExitFallback());
380
+ //# sourceMappingURL=index.js.map
381
+
382
+ const CLEAR_SCREEN = '\u001Bc';
383
+ function getResetScreen(configs, allowClearScreen) {
384
+ let clearScreen = allowClearScreen;
385
+ for (const config of configs) {
386
+ if (config.watch && config.watch.clearScreen === false) {
387
+ clearScreen = false;
388
+ }
389
+ }
390
+ if (clearScreen) {
391
+ return (heading) => rollup.stderr(CLEAR_SCREEN + heading);
392
+ }
393
+ let firstRun = true;
394
+ return (heading) => {
395
+ if (firstRun) {
396
+ rollup.stderr(heading);
397
+ firstRun = false;
398
+ }
399
+ };
400
+ }
401
+ //# sourceMappingURL=resetScreen.js.map
402
+
403
+ function extractWatchHooks(command) {
404
+ if (!Array.isArray(command.watch))
405
+ return {};
406
+ return command.watch
407
+ .filter(value => typeof value === 'object')
408
+ .reduce((accumulator, keyValueOption) => ({ ...accumulator, ...keyValueOption }), {});
409
+ }
410
+ function createWatchHooks(command) {
411
+ const watchHooks = extractWatchHooks(command);
412
+ return function (hook) {
413
+ if (watchHooks[hook]) {
414
+ const cmd = watchHooks[hook];
415
+ if (!command.silent) {
416
+ rollup.stderr(rollup.cyan$1(`watch.${hook} ${rollup.bold(`$ ${cmd}`)}`));
417
+ }
418
+ try {
419
+ // !! important - use stderr for all writes from execSync
420
+ const stdio = [process.stdin, process.stderr, process.stderr];
421
+ node_child_process.execSync(cmd, { stdio: command.silent ? 'ignore' : stdio });
422
+ }
423
+ catch (error) {
424
+ rollup.stderr(error.message);
425
+ }
426
+ }
427
+ };
428
+ }
429
+ //# sourceMappingURL=watchHooks.js.map
430
+
431
+ async function watch(command) {
432
+ process$2.env.ROLLUP_WATCH = 'true';
433
+ const isTTY = process$2.stderr.isTTY;
434
+ const silent = command.silent;
435
+ let watcher;
436
+ let configWatcher;
437
+ let resetScreen;
438
+ const configFile = command.config ? await cli.getConfigPath(command.config) : null;
439
+ const runWatchHook = createWatchHooks(command);
440
+ onExit(close);
441
+ process$2.on('uncaughtException', closeWithError);
442
+ if (!process$2.stdin.isTTY) {
443
+ process$2.stdin.on('end', close);
444
+ process$2.stdin.resume();
445
+ }
446
+ async function loadConfigFromFileAndTrack(configFile) {
447
+ let configFileData = null;
448
+ let configFileRevision = 0;
449
+ configWatcher = index.chokidar.watch(configFile).on('change', reloadConfigFile);
450
+ await reloadConfigFile();
451
+ async function reloadConfigFile() {
452
+ try {
453
+ const newConfigFileData = await promises.readFile(configFile, 'utf8');
454
+ if (newConfigFileData === configFileData) {
455
+ return;
456
+ }
457
+ configFileRevision++;
458
+ const currentConfigFileRevision = configFileRevision;
459
+ if (configFileData) {
460
+ rollup.stderr(`\nReloading updated config...`);
461
+ }
462
+ configFileData = newConfigFileData;
463
+ const { options, warnings } = await loadConfigFile_js.loadConfigFile(configFile, command, true);
464
+ if (currentConfigFileRevision !== configFileRevision) {
465
+ return;
466
+ }
467
+ if (watcher) {
468
+ await watcher.close();
469
+ }
470
+ start(options, warnings);
471
+ }
472
+ catch (error) {
473
+ rollup.handleError(error, true);
474
+ }
475
+ }
476
+ }
477
+ if (configFile) {
478
+ await loadConfigFromFileAndTrack(configFile);
479
+ }
480
+ else {
481
+ const { options, warnings } = await cli.loadConfigFromCommand(command, true);
482
+ await start(options, warnings);
483
+ }
484
+ async function start(configs, warnings) {
485
+ watcher = watchProxy.watch(configs);
486
+ watcher.on('event', event => {
487
+ switch (event.code) {
488
+ case 'ERROR': {
489
+ warnings.flush();
490
+ rollup.handleError(event.error, true);
491
+ runWatchHook('onError');
492
+ break;
493
+ }
494
+ case 'START': {
495
+ if (!silent) {
496
+ if (!resetScreen) {
497
+ resetScreen = getResetScreen(configs, isTTY);
498
+ }
499
+ resetScreen(rollup.underline(`rollup v${rollup.version}`));
500
+ }
501
+ runWatchHook('onStart');
502
+ break;
503
+ }
504
+ case 'BUNDLE_START': {
505
+ if (!silent) {
506
+ let input = event.input;
507
+ if (typeof input !== 'string') {
508
+ input = Array.isArray(input)
509
+ ? input.join(', ')
510
+ : Object.values(input).join(', ');
511
+ }
512
+ rollup.stderr(rollup.cyan$1(`bundles ${rollup.bold(input)} → ${rollup.bold(event.output.map(rollup.relativeId).join(', '))}...`));
513
+ }
514
+ runWatchHook('onBundleStart');
515
+ break;
516
+ }
517
+ case 'BUNDLE_END': {
518
+ warnings.flush();
519
+ if (!silent)
520
+ rollup.stderr(rollup.green(`created ${rollup.bold(event.output.map(rollup.relativeId).join(', '))} in ${rollup.bold(cli.prettyMilliseconds(event.duration))}`));
521
+ runWatchHook('onBundleEnd');
522
+ if (event.result && event.result.getTimings) {
523
+ cli.printTimings(event.result.getTimings());
524
+ }
525
+ break;
526
+ }
527
+ case 'END': {
528
+ runWatchHook('onEnd');
529
+ if (!silent && isTTY) {
530
+ rollup.stderr(`\n[${dateTime()}] waiting for changes...`);
531
+ }
532
+ }
533
+ }
534
+ if ('result' in event && event.result) {
535
+ event.result.close().catch(error => rollup.handleError(error, true));
536
+ }
537
+ });
538
+ }
539
+ async function close(code) {
540
+ process$2.removeListener('uncaughtException', closeWithError);
541
+ // removing a non-existent listener is a no-op
542
+ process$2.stdin.removeListener('end', close);
543
+ if (watcher)
544
+ await watcher.close();
545
+ if (configWatcher)
546
+ configWatcher.close();
547
+ if (code)
548
+ process$2.exit(code);
549
+ }
550
+ // return a promise that never resolves to keep the process running
551
+ return new Promise(() => { });
552
+ }
553
+ function closeWithError(error) {
554
+ error.name = `Uncaught ${error.name}`;
555
+ rollup.handleError(error);
556
+ }
557
+ //# sourceMappingURL=watch-cli.js.map
558
+
559
+ exports.watch = watch;
560
+ //# sourceMappingURL=watch-cli.js.map
@@ -0,0 +1,89 @@
1
+ /*
2
+ @license
3
+ Rollup.js v4.0.0-2
4
+ Tue, 01 Aug 2023 11:16:13 GMT - commit d62558dbc45912c9c4478dc761bb290738c3b968
5
+
6
+ https://github.com/rollup/rollup
7
+
8
+ Released under the MIT License.
9
+ */
10
+ 'use strict';
11
+
12
+ const rollup = require('./rollup.js');
13
+ const fseventsImporter = require('./fsevents-importer.js');
14
+
15
+ class WatchEmitter {
16
+ constructor() {
17
+ this.currentHandlers = Object.create(null);
18
+ this.persistentHandlers = Object.create(null);
19
+ }
20
+ // Will be overwritten by Rollup
21
+ async close() { }
22
+ emit(event, ...parameters) {
23
+ return Promise.all([...this.getCurrentHandlers(event), ...this.getPersistentHandlers(event)].map(handler => handler(...parameters)));
24
+ }
25
+ off(event, listener) {
26
+ const listeners = this.persistentHandlers[event];
27
+ if (listeners) {
28
+ // A hack stolen from "mitt": ">>> 0" does not change numbers >= 0, but -1
29
+ // (which would remove the last array element if used unchanged) is turned
30
+ // into max_int, which is outside the array and does not change anything.
31
+ listeners.splice(listeners.indexOf(listener) >>> 0, 1);
32
+ }
33
+ return this;
34
+ }
35
+ on(event, listener) {
36
+ this.getPersistentHandlers(event).push(listener);
37
+ return this;
38
+ }
39
+ onCurrentRun(event, listener) {
40
+ this.getCurrentHandlers(event).push(listener);
41
+ return this;
42
+ }
43
+ once(event, listener) {
44
+ const selfRemovingListener = (...parameters) => {
45
+ this.off(event, selfRemovingListener);
46
+ return listener(...parameters);
47
+ };
48
+ this.on(event, selfRemovingListener);
49
+ return this;
50
+ }
51
+ removeAllListeners() {
52
+ this.removeListenersForCurrentRun();
53
+ this.persistentHandlers = Object.create(null);
54
+ return this;
55
+ }
56
+ removeListenersForCurrentRun() {
57
+ this.currentHandlers = Object.create(null);
58
+ return this;
59
+ }
60
+ getCurrentHandlers(event) {
61
+ return this.currentHandlers[event] || (this.currentHandlers[event] = []);
62
+ }
63
+ getPersistentHandlers(event) {
64
+ return this.persistentHandlers[event] || (this.persistentHandlers[event] = []);
65
+ }
66
+ }
67
+ //# sourceMappingURL=WatchEmitter.js.map
68
+
69
+ function watch(configs) {
70
+ const emitter = new WatchEmitter();
71
+ watchInternal(configs, emitter).catch(error => {
72
+ rollup.handleError(error);
73
+ });
74
+ return emitter;
75
+ }
76
+ async function watchInternal(configs, emitter) {
77
+ const optionsList = await Promise.all(rollup.ensureArray(configs).map(config => rollup.mergeOptions(config, true)));
78
+ const watchOptionsList = optionsList.filter(config => config.watch !== false);
79
+ if (watchOptionsList.length === 0) {
80
+ return rollup.error(rollup.logInvalidOption('watch', rollup.URL_WATCH, 'there must be at least one config where "watch" is not set to "false"'));
81
+ }
82
+ await fseventsImporter.loadFsEvents();
83
+ const { Watcher } = await Promise.resolve().then(() => require('./watch.js'));
84
+ new Watcher(watchOptionsList, emitter);
85
+ }
86
+ //# sourceMappingURL=watch-proxy.js.map
87
+
88
+ exports.watch = watch;
89
+ //# sourceMappingURL=watch-proxy.js.map