@rollup/wasm-node 4.0.0-12
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/LICENSE.md +666 -0
- package/dist/bin/rollup +1716 -0
- package/dist/es/getLogFilter.js +64 -0
- package/dist/es/package.json +1 -0
- package/dist/es/rollup.js +18 -0
- package/dist/es/shared/node-entry.js +28055 -0
- package/dist/es/shared/watch.js +4858 -0
- package/dist/getLogFilter.d.ts +5 -0
- package/dist/getLogFilter.js +69 -0
- package/dist/loadConfigFile.d.ts +20 -0
- package/dist/loadConfigFile.js +30 -0
- package/dist/native.js +3 -0
- package/dist/rollup.d.ts +1009 -0
- package/dist/rollup.js +32 -0
- package/dist/shared/fsevents-importer.js +37 -0
- package/dist/shared/index.js +4571 -0
- package/dist/shared/loadConfigFile.js +546 -0
- package/dist/shared/rollup.js +28133 -0
- package/dist/shared/watch-cli.js +562 -0
- package/dist/shared/watch-proxy.js +87 -0
- package/dist/shared/watch.js +317 -0
- package/dist/wasm-node/bindings_wasm.js +509 -0
- package/dist/wasm-node/bindings_wasm_bg.wasm +0 -0
- package/package.json +155 -0
package/dist/rollup.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/*
|
|
2
|
+
@license
|
|
3
|
+
Rollup.js v4.0.0-12
|
|
4
|
+
Wed, 23 Aug 2023 14:39:48 GMT - commit b6eec18d711348e3b177ef58dc2836cdf75e0432
|
|
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.js');
|
|
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,37 @@
|
|
|
1
|
+
/*
|
|
2
|
+
@license
|
|
3
|
+
Rollup.js v4.0.0-12
|
|
4
|
+
Wed, 23 Aug 2023 14:39:48 GMT - commit b6eec18d711348e3b177ef58dc2836cdf75e0432
|
|
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
|