@rollup/wasm-node 4.30.0-1 → 4.30.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/LICENSE.md +23 -15
- package/dist/bin/rollup +8 -9
- package/dist/es/getLogFilter.js +2 -2
- package/dist/es/parseAst.js +2 -2
- package/dist/es/rollup.js +2 -3
- package/dist/es/shared/node-entry.js +803 -1575
- package/dist/es/shared/parseAst.js +3 -3
- package/dist/es/shared/watch.js +9 -10
- package/dist/getLogFilter.js +2 -2
- package/dist/loadConfigFile.js +2 -3
- package/dist/parseAst.js +2 -2
- package/dist/rollup.js +2 -3
- package/dist/shared/fsevents-importer.js +2 -2
- package/dist/shared/index.js +9 -9
- package/dist/shared/loadConfigFile.js +4 -4
- package/dist/shared/parseAst.js +2 -2
- package/dist/shared/rollup.js +834 -1622
- package/dist/shared/watch-cli.js +22 -7
- package/dist/shared/watch.js +3 -4
- package/package.json +2 -2
package/dist/shared/watch-cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.30.0
|
|
4
|
-
Mon,
|
|
3
|
+
Rollup.js v4.30.0
|
|
4
|
+
Mon, 06 Jan 2025 06:36:11 GMT - commit 958d5ebabd49297e9a4b78ad34ac0a0132305dea
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -21,14 +21,13 @@ 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('util');
|
|
25
24
|
require('fs');
|
|
25
|
+
require('util');
|
|
26
26
|
require('stream');
|
|
27
27
|
require('os');
|
|
28
28
|
require('./fsevents-importer.js');
|
|
29
29
|
require('events');
|
|
30
30
|
require('node:path');
|
|
31
|
-
require('tty');
|
|
32
31
|
require('../native.js');
|
|
33
32
|
require('node:perf_hooks');
|
|
34
33
|
require('node:url');
|
|
@@ -366,7 +365,23 @@ const {
|
|
|
366
365
|
*
|
|
367
366
|
* Returns a function that may be used to unload signal-exit.
|
|
368
367
|
*/
|
|
369
|
-
onExit
|
|
368
|
+
onExit,
|
|
369
|
+
/**
|
|
370
|
+
* Load the listeners. Likely you never need to call this, unless
|
|
371
|
+
* doing a rather deep integration with signal-exit functionality.
|
|
372
|
+
* Mostly exposed for the benefit of testing.
|
|
373
|
+
*
|
|
374
|
+
* @internal
|
|
375
|
+
*/
|
|
376
|
+
load,
|
|
377
|
+
/**
|
|
378
|
+
* Unload the listeners. Likely you never need to call this, unless
|
|
379
|
+
* doing a rather deep integration with signal-exit functionality.
|
|
380
|
+
* Mostly exposed for the benefit of testing.
|
|
381
|
+
*
|
|
382
|
+
* @internal
|
|
383
|
+
*/
|
|
384
|
+
unload, } = signalExitWrap(processOk(process$1) ? new SignalExit(process$1) : new SignalExitFallback());
|
|
370
385
|
|
|
371
386
|
const CLEAR_SCREEN = '\u001Bc';
|
|
372
387
|
function getResetScreen(configs, allowClearScreen) {
|
|
@@ -401,7 +416,7 @@ function createWatchHooks(command) {
|
|
|
401
416
|
if (watchHooks[hook]) {
|
|
402
417
|
const cmd = watchHooks[hook];
|
|
403
418
|
if (!command.silent) {
|
|
404
|
-
rollup.stderr(rollup.cyan
|
|
419
|
+
rollup.stderr(rollup.cyan(`watch.${hook} ${rollup.bold(`$ ${cmd}`)}`));
|
|
405
420
|
}
|
|
406
421
|
try {
|
|
407
422
|
// !! important - use stderr for all writes from execSync
|
|
@@ -496,7 +511,7 @@ async function watch(command) {
|
|
|
496
511
|
? input.join(', ')
|
|
497
512
|
: Object.values(input).join(', ');
|
|
498
513
|
}
|
|
499
|
-
rollup.stderr(rollup.cyan
|
|
514
|
+
rollup.stderr(rollup.cyan(`bundles ${rollup.bold(input)} → ${rollup.bold(event.output.map(parseAst_js.relativeId).join(', '))}...`));
|
|
500
515
|
}
|
|
501
516
|
runWatchHook('onBundleStart');
|
|
502
517
|
break;
|
package/dist/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.30.0
|
|
4
|
-
Mon,
|
|
3
|
+
Rollup.js v4.30.0
|
|
4
|
+
Mon, 06 Jan 2025 06:36:11 GMT - commit 958d5ebabd49297e9a4b78ad34ac0a0132305dea
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -18,12 +18,11 @@ const index = require('./index.js');
|
|
|
18
18
|
const node_os = require('node:os');
|
|
19
19
|
require('./parseAst.js');
|
|
20
20
|
require('../native.js');
|
|
21
|
-
require('tty');
|
|
22
21
|
require('path');
|
|
23
22
|
require('node:perf_hooks');
|
|
24
23
|
require('node:fs/promises');
|
|
25
|
-
require('util');
|
|
26
24
|
require('fs');
|
|
25
|
+
require('util');
|
|
27
26
|
require('stream');
|
|
28
27
|
require('os');
|
|
29
28
|
require('./fsevents-importer.js');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rollup/wasm-node",
|
|
3
|
-
"version": "4.30.0
|
|
3
|
+
"version": "4.30.0",
|
|
4
4
|
"description": "Next-generation ES module bundler with Node wasm",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -64,7 +64,6 @@
|
|
|
64
64
|
"buble": "^0.20.0",
|
|
65
65
|
"builtin-modules": "^4.0.0",
|
|
66
66
|
"chokidar": "^3.6.0",
|
|
67
|
-
"colorette": "^2.0.20",
|
|
68
67
|
"concurrently": "^9.1.0",
|
|
69
68
|
"core-js": "3.38.1",
|
|
70
69
|
"cross-env": "^7.0.3",
|
|
@@ -90,6 +89,7 @@
|
|
|
90
89
|
"nodemon": "^3.1.9",
|
|
91
90
|
"npm-audit-resolver": "^3.0.0-RC.0",
|
|
92
91
|
"nyc": "^17.1.0",
|
|
92
|
+
"picocolors": "^1.1.1",
|
|
93
93
|
"pinia": "^2.3.0",
|
|
94
94
|
"prettier": "^3.4.2",
|
|
95
95
|
"prettier-plugin-organize-imports": "^4.1.0",
|