@rollup/wasm-node 4.33.0-0 → 4.33.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 +714 -1553
- package/dist/es/shared/parseAst.js +3 -3
- package/dist/es/shared/watch.js +6 -6
- 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 +6 -6
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/parseAst.js +2 -2
- package/dist/shared/rollup.js +710 -1549
- package/dist/shared/watch-cli.js +20 -4
- package/dist/shared/watch.js +3 -3
- package/dist/wasm-node/bindings_wasm_bg.wasm +0 -0
- package/package.json +10 -10
package/dist/shared/watch-cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.33.0
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.33.0
|
|
4
|
+
Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
|
|
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('util');
|
|
25
24
|
require('fs');
|
|
25
|
+
require('util');
|
|
26
26
|
require('stream');
|
|
27
27
|
require('os');
|
|
28
28
|
require('./fsevents-importer.js');
|
|
@@ -365,7 +365,23 @@ const {
|
|
|
365
365
|
*
|
|
366
366
|
* Returns a function that may be used to unload signal-exit.
|
|
367
367
|
*/
|
|
368
|
-
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());
|
|
369
385
|
|
|
370
386
|
const CLEAR_SCREEN = '\u001Bc';
|
|
371
387
|
function getResetScreen(configs, allowClearScreen) {
|
package/dist/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.33.0
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.33.0
|
|
4
|
+
Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -21,8 +21,8 @@ require('../native.js');
|
|
|
21
21
|
require('path');
|
|
22
22
|
require('node:perf_hooks');
|
|
23
23
|
require('node:fs/promises');
|
|
24
|
-
require('util');
|
|
25
24
|
require('fs');
|
|
25
|
+
require('util');
|
|
26
26
|
require('stream');
|
|
27
27
|
require('os');
|
|
28
28
|
require('./fsevents-importer.js');
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rollup/wasm-node",
|
|
3
|
-
"version": "4.33.0
|
|
3
|
+
"version": "4.33.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",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@codemirror/search": "^6.5.8",
|
|
39
39
|
"@codemirror/state": "^6.5.1",
|
|
40
40
|
"@codemirror/view": "^6.36.2",
|
|
41
|
-
"@eslint/js": "^9.
|
|
41
|
+
"@eslint/js": "^9.19.0",
|
|
42
42
|
"@inquirer/prompts": "^7.2.3",
|
|
43
43
|
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
44
44
|
"@mermaid-js/mermaid-cli": "^11.4.2",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"@rollup/plugin-terser": "^0.4.4",
|
|
53
53
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
54
54
|
"@rollup/pluginutils": "^5.1.4",
|
|
55
|
-
"@shikijs/vitepress-twoslash": "^2.0
|
|
55
|
+
"@shikijs/vitepress-twoslash": "^2.1.0",
|
|
56
56
|
"@types/mocha": "^10.0.10",
|
|
57
|
-
"@types/node": "^18.19.
|
|
57
|
+
"@types/node": "^18.19.74",
|
|
58
58
|
"@types/semver": "^7.5.8",
|
|
59
59
|
"@types/yargs-parser": "^21.0.3",
|
|
60
60
|
"@vue/language-server": "^2.2.0",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"date-time": "^4.0.0",
|
|
71
71
|
"es5-shim": "^4.6.7",
|
|
72
72
|
"es6-shim": "^0.35.8",
|
|
73
|
-
"eslint": "^9.
|
|
73
|
+
"eslint": "^9.19.0",
|
|
74
74
|
"eslint-config-prettier": "^10.0.1",
|
|
75
75
|
"eslint-plugin-prettier": "^5.2.3",
|
|
76
76
|
"eslint-plugin-unicorn": "^56.0.1",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"globals": "^15.14.0",
|
|
83
83
|
"husky": "^9.1.7",
|
|
84
84
|
"is-reference": "^3.0.3",
|
|
85
|
-
"lint-staged": "^15.4.
|
|
85
|
+
"lint-staged": "^15.4.3",
|
|
86
86
|
"locate-character": "^3.0.0",
|
|
87
87
|
"magic-string": "^0.30.17",
|
|
88
88
|
"mocha": "^11.1.0",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"pretty-bytes": "^6.1.1",
|
|
97
97
|
"pretty-ms": "^9.2.0",
|
|
98
98
|
"requirejs": "^2.3.7",
|
|
99
|
-
"rollup": "^4.
|
|
99
|
+
"rollup": "^4.32.0",
|
|
100
100
|
"rollup-plugin-license": "^3.5.3",
|
|
101
101
|
"rollup-plugin-string": "^3.0.0",
|
|
102
102
|
"semver": "^7.6.3",
|
|
@@ -108,9 +108,9 @@
|
|
|
108
108
|
"terser": "^5.37.0",
|
|
109
109
|
"tslib": "^2.8.1",
|
|
110
110
|
"typescript": "^5.7.3",
|
|
111
|
-
"typescript-eslint": "^8.
|
|
112
|
-
"vite": "^6.0.
|
|
113
|
-
"vitepress": "^1.6.
|
|
111
|
+
"typescript-eslint": "^8.22.0",
|
|
112
|
+
"vite": "^6.0.11",
|
|
113
|
+
"vitepress": "^1.6.3",
|
|
114
114
|
"vue": "^3.5.13",
|
|
115
115
|
"vue-tsc": "^2.2.0",
|
|
116
116
|
"wasm-pack": "^0.13.1",
|