@rollup/wasm-node 4.62.2 → 4.62.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 +13 -17
- 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 +682 -921
- package/dist/es/shared/parseAst.js +2 -2
- package/dist/es/shared/watch.js +4 -4
- package/dist/getLogFilter.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/parseAst.js +2 -2
- package/dist/rollup.d.ts +6 -23
- package/dist/rollup.js +2 -2
- package/dist/shared/fsevents-importer.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/parseAst.js +23 -23
- package/dist/shared/rollup.js +854 -1093
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +4 -4
- package/dist/wasm-node/bindings_wasm.js +3 -3
- package/dist/wasm-node/bindings_wasm_bg.wasm +0 -0
- package/package.json +37 -35
package/dist/shared/watch-cli.js
CHANGED
package/dist/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.62.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.62.4
|
|
4
|
+
Sat, 01 Aug 2026 05:20:25 GMT - commit ddc4ffab628944e45dbb8d66d58aae818015440f
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -296,8 +296,8 @@ class Task {
|
|
|
296
296
|
this.watchFile(id);
|
|
297
297
|
}
|
|
298
298
|
for (const module of this.cache.modules) {
|
|
299
|
-
for (const
|
|
300
|
-
this.watchFile(
|
|
299
|
+
for (const dependencyId of module.transformDependencies) {
|
|
300
|
+
this.watchFile(dependencyId, true);
|
|
301
301
|
}
|
|
302
302
|
}
|
|
303
303
|
for (const id of previouslyWatched) {
|
|
@@ -91,7 +91,7 @@ exports.xxhashBase64Url = xxhashBase64Url;
|
|
|
91
91
|
function __wbg_get_imports() {
|
|
92
92
|
const import0 = {
|
|
93
93
|
__proto__: null,
|
|
94
|
-
|
|
94
|
+
__wbg___wbindgen_throw_344f42d3211c4765: function(arg0, arg1) {
|
|
95
95
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
96
96
|
},
|
|
97
97
|
__wbg_error_a6fa202b58aa1cd3: function(arg0, arg1) {
|
|
@@ -105,7 +105,7 @@ function __wbg_get_imports() {
|
|
|
105
105
|
wasm.__wbindgen_export(deferred0_0, deferred0_1, 1);
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
|
-
|
|
108
|
+
__wbg_length_1f0964f4a5e2c6d8: function(arg0) {
|
|
109
109
|
const ret = getObject(arg0).length;
|
|
110
110
|
return ret;
|
|
111
111
|
},
|
|
@@ -113,7 +113,7 @@ function __wbg_get_imports() {
|
|
|
113
113
|
const ret = new Error();
|
|
114
114
|
return addHeapObject(ret);
|
|
115
115
|
},
|
|
116
|
-
|
|
116
|
+
__wbg_prototypesetcall_4770620bbe4688a0: function(arg0, arg1, arg2) {
|
|
117
117
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), getObject(arg2));
|
|
118
118
|
},
|
|
119
119
|
__wbg_stack_3b0d974bbf31e44f: function(arg0, arg1) {
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rollup/wasm-node",
|
|
3
|
-
"version": "4.62.
|
|
3
|
+
"version": "4.62.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",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://rollupjs.org/",
|
|
28
28
|
"optionalDependencies": {
|
|
29
|
+
"@napi-rs/lzma-linux-x64-gnu": "1.5.1",
|
|
29
30
|
"fsevents": "~2.3.2"
|
|
30
31
|
},
|
|
31
32
|
"dependencies": {
|
|
@@ -35,18 +36,18 @@
|
|
|
35
36
|
"core-js": "We only update manually as every update requires a snapshot update"
|
|
36
37
|
},
|
|
37
38
|
"devDependencies": {
|
|
38
|
-
"@codemirror/commands": "^6.10.
|
|
39
|
+
"@codemirror/commands": "^6.10.4",
|
|
39
40
|
"@codemirror/lang-javascript": "^6.2.5",
|
|
40
|
-
"@codemirror/language": "^6.12.
|
|
41
|
-
"@codemirror/search": "^6.7.
|
|
42
|
-
"@codemirror/state": "^6.
|
|
43
|
-
"@codemirror/view": "^6.43.
|
|
44
|
-
"@emnapi/core": "^1.11.
|
|
45
|
-
"@emnapi/runtime": "^1.11.
|
|
41
|
+
"@codemirror/language": "^6.12.4",
|
|
42
|
+
"@codemirror/search": "^6.7.1",
|
|
43
|
+
"@codemirror/state": "^6.7.1",
|
|
44
|
+
"@codemirror/view": "^6.43.7",
|
|
45
|
+
"@emnapi/core": "^1.11.3",
|
|
46
|
+
"@emnapi/runtime": "^1.11.3",
|
|
46
47
|
"@eslint/js": "^10.0.1",
|
|
47
48
|
"@inquirer/prompts": "^7.10.1",
|
|
48
49
|
"@jridgewell/sourcemap-codec": "^1.5.5",
|
|
49
|
-
"@mermaid-js/mermaid-cli": "^11.
|
|
50
|
+
"@mermaid-js/mermaid-cli": "^11.16.0",
|
|
50
51
|
"@napi-rs/cli": "3.4.1",
|
|
51
52
|
"@rollup/plugin-alias": "^6.0.0",
|
|
52
53
|
"@rollup/plugin-buble": "^1.0.3",
|
|
@@ -57,76 +58,76 @@
|
|
|
57
58
|
"@rollup/plugin-terser": "^0.4.4",
|
|
58
59
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
59
60
|
"@rollup/pluginutils": "^5.4.0",
|
|
60
|
-
"@shikijs/vitepress-twoslash": "^4.
|
|
61
|
+
"@shikijs/vitepress-twoslash": "^4.3.1",
|
|
61
62
|
"@types/mocha": "^10.0.10",
|
|
62
63
|
"@types/node": "^20.19.43",
|
|
63
64
|
"@types/picomatch": "^4.0.3",
|
|
64
65
|
"@types/semver": "^7.7.1",
|
|
65
66
|
"@types/yargs-parser": "^21.0.3",
|
|
66
|
-
"@vue/language-server": "^3.3.
|
|
67
|
+
"@vue/language-server": "^3.3.8",
|
|
67
68
|
"acorn": "^8.17.0",
|
|
68
69
|
"acorn-import-assertions": "^1.9.0",
|
|
69
70
|
"acorn-import-phases": "^1.0.4",
|
|
70
71
|
"acorn-jsx": "^5.3.2",
|
|
71
72
|
"buble": "^0.20.0",
|
|
72
|
-
"builtin-modules": "^5.
|
|
73
|
+
"builtin-modules": "^5.3.0",
|
|
73
74
|
"chokidar": "^3.6.0",
|
|
74
|
-
"concurrently": "^9.2.
|
|
75
|
+
"concurrently": "^9.2.4",
|
|
75
76
|
"core-js": "3.38.1",
|
|
76
77
|
"date-time": "^4.0.0",
|
|
77
78
|
"es5-shim": "^4.6.7",
|
|
78
79
|
"es6-shim": "^0.35.8",
|
|
79
|
-
"eslint": "^10.
|
|
80
|
+
"eslint": "^10.8.0",
|
|
80
81
|
"eslint-config-prettier": "^10.1.8",
|
|
81
82
|
"eslint-plugin-prettier": "^5.5.6",
|
|
82
|
-
"eslint-plugin-unicorn": "^
|
|
83
|
-
"eslint-plugin-vue": "^10.
|
|
83
|
+
"eslint-plugin-unicorn": "^72.0.0",
|
|
84
|
+
"eslint-plugin-vue": "^10.10.0",
|
|
84
85
|
"fixturify": "^3.0.0",
|
|
85
86
|
"flru": "^1.0.2",
|
|
86
|
-
"fs-extra": "^11.
|
|
87
|
+
"fs-extra": "^11.4.0",
|
|
87
88
|
"github-api": "^3.4.0",
|
|
88
|
-
"globals": "^17.
|
|
89
|
+
"globals": "^17.8.0",
|
|
89
90
|
"husky": "^9.1.7",
|
|
90
91
|
"is-reference": "^3.0.3",
|
|
91
|
-
"lint-staged": "^17.0
|
|
92
|
+
"lint-staged": "^17.2.0",
|
|
92
93
|
"locate-character": "^3.0.0",
|
|
93
|
-
"magic-string": "^
|
|
94
|
-
"memfs": "^4.
|
|
94
|
+
"magic-string": "^1.1.0",
|
|
95
|
+
"memfs": "^4.64.0",
|
|
95
96
|
"mocha": "11.7.6",
|
|
96
97
|
"nodemon": "^3.1.14",
|
|
97
98
|
"npm-audit-resolver": "^3.0.0-RC.0",
|
|
98
99
|
"nyc": "^18.0.0",
|
|
99
100
|
"patch-package": "^8.0.1",
|
|
100
101
|
"picocolors": "^1.1.1",
|
|
101
|
-
"picomatch": "^4.0.
|
|
102
|
-
"pinia": "^
|
|
103
|
-
"prettier": "^3.
|
|
102
|
+
"picomatch": "^4.0.5",
|
|
103
|
+
"pinia": "^4.0.2",
|
|
104
|
+
"prettier": "^3.9.6",
|
|
104
105
|
"prettier-plugin-organize-imports": "^4.3.0",
|
|
105
|
-
"pretty-bytes": "^7.1.
|
|
106
|
+
"pretty-bytes": "^7.1.1",
|
|
106
107
|
"pretty-ms": "^9.3.0",
|
|
107
108
|
"requirejs": "^2.3.8",
|
|
108
|
-
"rollup": "^4.62.
|
|
109
|
+
"rollup": "^4.62.3",
|
|
109
110
|
"rollup-plugin-license": "^3.7.1",
|
|
110
|
-
"semver": "^7.8.
|
|
111
|
+
"semver": "^7.8.5",
|
|
111
112
|
"shx": "^0.4.0",
|
|
112
113
|
"signal-exit": "^4.1.0",
|
|
113
|
-
"source-map": "^0.
|
|
114
|
+
"source-map": "^0.8.0",
|
|
114
115
|
"source-map-support": "^0.5.21",
|
|
115
116
|
"systemjs": "^6.15.1",
|
|
116
|
-
"terser": "^5.
|
|
117
|
+
"terser": "^5.49.0",
|
|
117
118
|
"tslib": "^2.8.1",
|
|
118
119
|
"typescript": "^5.9.3",
|
|
119
|
-
"typescript-eslint": "^8.
|
|
120
|
-
"vite": "^7.3.
|
|
120
|
+
"typescript-eslint": "^8.65.0",
|
|
121
|
+
"vite": "^7.3.6",
|
|
121
122
|
"vitepress": "^1.6.4",
|
|
122
|
-
"vue": "^3.5.
|
|
123
|
+
"vue": "^3.5.40",
|
|
123
124
|
"vue-eslint-parser": "^10.4.1",
|
|
124
|
-
"vue-tsc": "^3.3.
|
|
125
|
+
"vue-tsc": "^3.3.8",
|
|
125
126
|
"wasm-pack": "^0.15.0",
|
|
126
127
|
"yargs-parser": "^21.1.1"
|
|
127
128
|
},
|
|
128
129
|
"overrides": {
|
|
129
|
-
"axios": "^1.18.
|
|
130
|
+
"axios": "^1.18.1",
|
|
130
131
|
"esbuild": ">0.24.2",
|
|
131
132
|
"lodash-es": ">4.17.22",
|
|
132
133
|
"path-scurry": {
|
|
@@ -135,7 +136,7 @@
|
|
|
135
136
|
"readable-stream": "npm:@built-in/readable-stream@1",
|
|
136
137
|
"react": "^18.3.1",
|
|
137
138
|
"react-dom": "^18.3.1",
|
|
138
|
-
"semver": "^7.8.
|
|
139
|
+
"semver": "^7.8.5",
|
|
139
140
|
"tar": ">7.5.6",
|
|
140
141
|
"vite": "$vite"
|
|
141
142
|
},
|
|
@@ -143,6 +144,7 @@
|
|
|
143
144
|
"vue-tsc": "This is necessary so that prettier-plugin-organize-imports works correctly in Vue templatges",
|
|
144
145
|
"@emnapi/core": "If missing this fails npm install for Linux ARM",
|
|
145
146
|
"@emnapi/runtime": "If missing this fails npm install for Linux ARM",
|
|
147
|
+
"@napi-rs/lzma-linux-x64-gnu": "If missing, napi build --use-napi-cross silently skips the cross toolchain and links against the host glibc (#6461)",
|
|
146
148
|
"react": "If missing this fails npm install for Linux ARM",
|
|
147
149
|
"react-dom": "If missing this fails npm install for Linux ARM"
|
|
148
150
|
},
|