@rollup/wasm-node 4.29.0 → 4.30.0-0
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 +2 -2
- package/dist/es/getLogFilter.js +2 -2
- package/dist/es/parseAst.js +2 -2
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/node-entry.js +1471 -658
- package/dist/es/shared/parseAst.js +3 -3
- package/dist/es/shared/watch.js +3 -3
- package/dist/getLogFilter.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/parseAst.js +2 -2
- package/dist/rollup.js +2 -2
- package/dist/shared/fsevents-importer.js +2 -2
- package/dist/shared/index.js +3 -3
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/parseAst.js +2 -2
- package/dist/shared/rollup.js +1468 -695
- package/dist/shared/watch-cli.js +4 -20
- package/dist/shared/watch.js +3 -3
- package/package.json +1 -1
package/dist/shared/watch-cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.30.0-0
|
|
4
|
+
Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -21,8 +21,8 @@ const loadConfigFile_js = require('./loadConfigFile.js');
|
|
|
21
21
|
const node_child_process = require('node:child_process');
|
|
22
22
|
const rollup_js = require('../rollup.js');
|
|
23
23
|
require('path');
|
|
24
|
-
require('fs');
|
|
25
24
|
require('util');
|
|
25
|
+
require('fs');
|
|
26
26
|
require('stream');
|
|
27
27
|
require('os');
|
|
28
28
|
require('./fsevents-importer.js');
|
|
@@ -366,23 +366,7 @@ const {
|
|
|
366
366
|
*
|
|
367
367
|
* Returns a function that may be used to unload signal-exit.
|
|
368
368
|
*/
|
|
369
|
-
onExit
|
|
370
|
-
/**
|
|
371
|
-
* Load the listeners. Likely you never need to call this, unless
|
|
372
|
-
* doing a rather deep integration with signal-exit functionality.
|
|
373
|
-
* Mostly exposed for the benefit of testing.
|
|
374
|
-
*
|
|
375
|
-
* @internal
|
|
376
|
-
*/
|
|
377
|
-
load,
|
|
378
|
-
/**
|
|
379
|
-
* Unload the listeners. Likely you never need to call this, unless
|
|
380
|
-
* doing a rather deep integration with signal-exit functionality.
|
|
381
|
-
* Mostly exposed for the benefit of testing.
|
|
382
|
-
*
|
|
383
|
-
* @internal
|
|
384
|
-
*/
|
|
385
|
-
unload, } = signalExitWrap(processOk(process$1) ? new SignalExit(process$1) : new SignalExitFallback());
|
|
369
|
+
onExit} = signalExitWrap(processOk(process$1) ? new SignalExit(process$1) : new SignalExitFallback());
|
|
386
370
|
|
|
387
371
|
const CLEAR_SCREEN = '\u001Bc';
|
|
388
372
|
function getResetScreen(configs, allowClearScreen) {
|
package/dist/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.30.0-0
|
|
4
|
+
Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -22,8 +22,8 @@ require('tty');
|
|
|
22
22
|
require('path');
|
|
23
23
|
require('node:perf_hooks');
|
|
24
24
|
require('node:fs/promises');
|
|
25
|
-
require('fs');
|
|
26
25
|
require('util');
|
|
26
|
+
require('fs');
|
|
27
27
|
require('stream');
|
|
28
28
|
require('os');
|
|
29
29
|
require('./fsevents-importer.js');
|