| 12345678910111213141516171819202122232425262728293031323334353637 |
- /*
- @license
- Rollup.js v3.29.4
- Thu, 28 Sep 2023 04:54:30 GMT - commit 4e92d60fa90cead39481e3703d26e5d812f43bd1
- https://github.com/rollup/rollup
- Released under the MIT License.
- */
- 'use strict';
- let fsEvents;
- let fsEventsImportError;
- async function loadFsEvents() {
- try {
- ({ default: fsEvents } = await import('fsevents'));
- }
- catch (error) {
- fsEventsImportError = error;
- }
- }
- // A call to this function will be injected into the chokidar code
- function getFsEvents() {
- if (fsEventsImportError)
- throw fsEventsImportError;
- return fsEvents;
- }
- const fseventsImporter = /*#__PURE__*/Object.defineProperty({
- __proto__: null,
- getFsEvents,
- loadFsEvents
- }, Symbol.toStringTag, { value: 'Module' });
- exports.fseventsImporter = fseventsImporter;
- exports.loadFsEvents = loadFsEvents;
- //# sourceMappingURL=fsevents-importer.js.map
|