@rollup/wasm-node 4.27.2 → 4.27.4
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 +76 -64
- 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 +519 -906
- 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 +556 -903
- 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 +12 -12
package/dist/shared/watch-cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.27.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.27.4
|
|
4
|
+
Sat, 23 Nov 2024 06:59:50 GMT - commit e805b546405a4e6cfccd3fe73e9f4df770023824
|
|
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');
|
|
@@ -366,7 +366,23 @@ const {
|
|
|
366
366
|
*
|
|
367
367
|
* Returns a function that may be used to unload signal-exit.
|
|
368
368
|
*/
|
|
369
|
-
onExit
|
|
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());
|
|
370
386
|
|
|
371
387
|
const CLEAR_SCREEN = '\u001Bc';
|
|
372
388
|
function getResetScreen(configs, allowClearScreen) {
|
package/dist/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.27.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.27.4
|
|
4
|
+
Sat, 23 Nov 2024 06:59:50 GMT - commit e805b546405a4e6cfccd3fe73e9f4df770023824
|
|
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('util');
|
|
26
25
|
require('fs');
|
|
26
|
+
require('util');
|
|
27
27
|
require('stream');
|
|
28
28
|
require('os');
|
|
29
29
|
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.27.
|
|
3
|
+
"version": "4.27.4",
|
|
4
4
|
"description": "Next-generation ES module bundler with Node wasm",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"@codemirror/language": "^6.10.3",
|
|
38
38
|
"@codemirror/search": "^6.5.7",
|
|
39
39
|
"@codemirror/state": "^6.4.1",
|
|
40
|
-
"@codemirror/view": "^6.34.
|
|
41
|
-
"@eslint/js": "^9.
|
|
40
|
+
"@codemirror/view": "^6.34.3",
|
|
41
|
+
"@eslint/js": "^9.15.0",
|
|
42
42
|
"@inquirer/prompts": "^7.1.0",
|
|
43
43
|
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
44
44
|
"@mermaid-js/mermaid-cli": "^11.4.0",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@rollup/plugin-terser": "^0.4.4",
|
|
53
53
|
"@rollup/plugin-typescript": "^12.1.1",
|
|
54
54
|
"@rollup/pluginutils": "^5.1.3",
|
|
55
|
-
"@shikijs/vitepress-twoslash": "^1.
|
|
55
|
+
"@shikijs/vitepress-twoslash": "^1.23.1",
|
|
56
56
|
"@types/mocha": "^10.0.9",
|
|
57
57
|
"@types/node": "^18.19.64",
|
|
58
58
|
"@types/semver": "^7.5.8",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"date-time": "^4.0.0",
|
|
72
72
|
"es5-shim": "^4.6.7",
|
|
73
73
|
"es6-shim": "^0.35.8",
|
|
74
|
-
"eslint": "^9.
|
|
74
|
+
"eslint": "^9.15.0",
|
|
75
75
|
"eslint-config-prettier": "^9.1.0",
|
|
76
76
|
"eslint-plugin-prettier": "^5.2.1",
|
|
77
77
|
"eslint-plugin-unicorn": "^56.0.0",
|
|
@@ -81,11 +81,11 @@
|
|
|
81
81
|
"fs-extra": "^11.2.0",
|
|
82
82
|
"github-api": "^3.4.0",
|
|
83
83
|
"globals": "^15.12.0",
|
|
84
|
-
"husky": "^9.1.
|
|
85
|
-
"is-reference": "^3.0.
|
|
84
|
+
"husky": "^9.1.7",
|
|
85
|
+
"is-reference": "^3.0.3",
|
|
86
86
|
"lint-staged": "^15.2.10",
|
|
87
87
|
"locate-character": "^3.0.0",
|
|
88
|
-
"magic-string": "^0.30.
|
|
88
|
+
"magic-string": "^0.30.13",
|
|
89
89
|
"mocha": "^10.8.2",
|
|
90
90
|
"nodemon": "^3.1.7",
|
|
91
91
|
"npm-audit-resolver": "^3.0.0-RC.0",
|
|
@@ -94,9 +94,9 @@
|
|
|
94
94
|
"prettier": "^3.3.3",
|
|
95
95
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
96
96
|
"pretty-bytes": "^6.1.1",
|
|
97
|
-
"pretty-ms": "^9.
|
|
97
|
+
"pretty-ms": "^9.2.0",
|
|
98
98
|
"requirejs": "^2.3.7",
|
|
99
|
-
"rollup": "^4.
|
|
99
|
+
"rollup": "^4.27.3",
|
|
100
100
|
"rollup-plugin-license": "^3.5.3",
|
|
101
101
|
"rollup-plugin-string": "^3.0.0",
|
|
102
102
|
"semver": "^7.6.3",
|
|
@@ -108,10 +108,10 @@
|
|
|
108
108
|
"terser": "^5.36.0",
|
|
109
109
|
"tslib": "^2.8.1",
|
|
110
110
|
"typescript": "^5.6.3",
|
|
111
|
-
"typescript-eslint": "^8.
|
|
111
|
+
"typescript-eslint": "^8.15.0",
|
|
112
112
|
"vite": "^5.4.11",
|
|
113
113
|
"vitepress": "^1.5.0",
|
|
114
|
-
"vue": "^3.5.
|
|
114
|
+
"vue": "^3.5.13",
|
|
115
115
|
"vue-tsc": "^2.1.10",
|
|
116
116
|
"wasm-pack": "^0.13.1",
|
|
117
117
|
"yargs-parser": "^21.1.1"
|