/* | |
@license | |
Rollup.js v4.22.4 | |
Sat, 21 Sep 2024 06:10:53 GMT - commit 79c0aba353ca84c0e22c3cfe9eee433ba83f3670 | |
https://github.com/rollup/rollup | |
Released under the MIT License. | |
*/ | |
; | |
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 | |