rollup 4.0.0-1 → 4.0.0-3
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/bin/rollup +1722 -0
- package/dist/es/getLogFilter.js +65 -0
- package/dist/es/native.js +257 -0
- package/dist/es/package.json +1 -0
- package/dist/es/rollup.js +18 -0
- package/dist/es/shared/node-entry.js +28052 -0
- package/dist/es/shared/watch.js +4900 -0
- package/dist/getLogFilter.d.ts +5 -0
- package/dist/getLogFilter.js +70 -0
- package/dist/loadConfigFile.d.ts +20 -0
- package/dist/loadConfigFile.js +30 -0
- package/dist/native.js +257 -0
- package/dist/rollup.d.ts +1008 -0
- package/dist/rollup.js +32 -0
- package/dist/shared/fsevents-importer.js +38 -0
- package/dist/shared/index.js +4611 -0
- package/dist/shared/loadConfigFile.js +551 -0
- package/dist/shared/rollup.js +28128 -0
- package/dist/shared/watch-cli.js +560 -0
- package/dist/shared/watch-proxy.js +89 -0
- package/dist/shared/watch.js +319 -0
- package/package.json +17 -17
package/dist/rollup.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/*
|
|
2
|
+
@license
|
|
3
|
+
Rollup.js v4.0.0-3
|
|
4
|
+
Fri, 04 Aug 2023 08:16:31 GMT - commit d9deb724f026a6f3e429509fce2d920e75d6a1ae
|
|
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-3
|
|
4
|
+
Fri, 04 Aug 2023 08:16:31 GMT - commit d9deb724f026a6f3e429509fce2d920e75d6a1ae
|
|
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
|