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.
package/dist/rollup.js ADDED
@@ -0,0 +1,32 @@
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 rollup = require('./shared/rollup.js');
15
+ const watchProxy = require('./shared/watch-proxy.js');
16
+ require('node:process');
17
+ require('tty');
18
+ require('node:path');
19
+ require('path');
20
+ require('node:perf_hooks');
21
+ require('node:crypto');
22
+ require('./native');
23
+ require('node:fs/promises');
24
+ require('./shared/fsevents-importer.js');
25
+
26
+
27
+
28
+ exports.VERSION = rollup.version;
29
+ exports.defineConfig = rollup.defineConfig;
30
+ exports.rollup = rollup.rollup;
31
+ exports.watch = watchProxy.watch;
32
+ //# sourceMappingURL=rollup.js.map
@@ -0,0 +1,38 @@
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
+ 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
+ //# sourceMappingURL=fsevents-importer.js.map
29
+
30
+ const fseventsImporter = /*#__PURE__*/Object.defineProperty({
31
+ __proto__: null,
32
+ getFsEvents,
33
+ loadFsEvents
34
+ }, Symbol.toStringTag, { value: 'Module' });
35
+
36
+ exports.fseventsImporter = fseventsImporter;
37
+ exports.loadFsEvents = loadFsEvents;
38
+ //# sourceMappingURL=fsevents-importer.js.map