Last change
on this file was 57e58a3, checked in by ste08 <sjovanoska@…>, 4 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
884 bytes
|
Rev | Line | |
---|
[57e58a3] | 1 | /*
|
---|
| 2 | @license
|
---|
| 3 | Rollup.js v4.34.4
|
---|
| 4 | Wed, 05 Feb 2025 21:30:40 GMT - commit 19312a762c3cda56a0f6dc80a0887a4499db2257
|
---|
| 5 |
|
---|
| 6 | https://github.com/rollup/rollup
|
---|
| 7 |
|
---|
| 8 | Released under the MIT License.
|
---|
| 9 | */
|
---|
| 10 | 'use strict';
|
---|
| 11 |
|
---|
| 12 | let fsEvents;
|
---|
| 13 | let fsEventsImportError;
|
---|
| 14 | async function loadFsEvents() {
|
---|
| 15 | try {
|
---|
| 16 | ({ default: fsEvents } = await import('fsevents'));
|
---|
| 17 | }
|
---|
| 18 | catch (error) {
|
---|
| 19 | fsEventsImportError = error;
|
---|
| 20 | }
|
---|
| 21 | }
|
---|
| 22 | // A call to this function will be injected into the chokidar code
|
---|
| 23 | function getFsEvents() {
|
---|
| 24 | if (fsEventsImportError)
|
---|
| 25 | throw fsEventsImportError;
|
---|
| 26 | return fsEvents;
|
---|
| 27 | }
|
---|
| 28 |
|
---|
| 29 | const fseventsImporter = /*#__PURE__*/Object.defineProperty({
|
---|
| 30 | __proto__: null,
|
---|
| 31 | getFsEvents,
|
---|
| 32 | loadFsEvents
|
---|
| 33 | }, Symbol.toStringTag, { value: 'Module' });
|
---|
| 34 |
|
---|
| 35 | exports.fseventsImporter = fseventsImporter;
|
---|
| 36 | exports.loadFsEvents = loadFsEvents;
|
---|
| 37 | //# sourceMappingURL=fsevents-importer.js.map
|
---|
Note:
See
TracBrowser
for help on using the repository browser.