@rollup/wasm-node 4.0.2 → 4.1.1
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 +300 -145
- package/dist/es/shared/parseAst.js +2 -2
- package/dist/es/shared/watch.js +2 -2
- package/dist/getLogFilter.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/parseAst.js +2 -2
- package/dist/rollup.d.ts +3 -3
- 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 +2 -2
- package/dist/shared/rollup.js +300 -145
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch-proxy.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/dist/wasm-node/bindings_wasm.js +18 -18
- package/dist/wasm-node/bindings_wasm_bg.wasm +0 -0
- package/package.json +17 -17
package/dist/shared/watch-cli.js
CHANGED
package/dist/shared/watch.js
CHANGED
|
@@ -273,11 +273,17 @@ module.exports.__wbindgen_object_drop_ref = function(arg0) {
|
|
|
273
273
|
takeObject(arg0);
|
|
274
274
|
};
|
|
275
275
|
|
|
276
|
-
module.exports.
|
|
277
|
-
const ret = getStringFromWasm0(arg0, arg1);
|
|
276
|
+
module.exports.__wbindgen_error_new = function(arg0, arg1) {
|
|
277
|
+
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
278
278
|
return addHeapObject(ret);
|
|
279
279
|
};
|
|
280
280
|
|
|
281
|
+
module.exports.__wbindgen_boolean_get = function(arg0) {
|
|
282
|
+
const v = getObject(arg0);
|
|
283
|
+
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
|
|
284
|
+
return ret;
|
|
285
|
+
};
|
|
286
|
+
|
|
281
287
|
module.exports.__wbindgen_string_get = function(arg0, arg1) {
|
|
282
288
|
const obj = getObject(arg1);
|
|
283
289
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
@@ -287,17 +293,6 @@ module.exports.__wbindgen_string_get = function(arg0, arg1) {
|
|
|
287
293
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
288
294
|
};
|
|
289
295
|
|
|
290
|
-
module.exports.__wbindgen_error_new = function(arg0, arg1) {
|
|
291
|
-
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
292
|
-
return addHeapObject(ret);
|
|
293
|
-
};
|
|
294
|
-
|
|
295
|
-
module.exports.__wbindgen_boolean_get = function(arg0) {
|
|
296
|
-
const v = getObject(arg0);
|
|
297
|
-
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
|
|
298
|
-
return ret;
|
|
299
|
-
};
|
|
300
|
-
|
|
301
296
|
module.exports.__wbindgen_is_object = function(arg0) {
|
|
302
297
|
const val = getObject(arg0);
|
|
303
298
|
const ret = typeof(val) === 'object' && val !== null;
|
|
@@ -314,6 +309,16 @@ module.exports.__wbindgen_in = function(arg0, arg1) {
|
|
|
314
309
|
return ret;
|
|
315
310
|
};
|
|
316
311
|
|
|
312
|
+
module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
313
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
314
|
+
return addHeapObject(ret);
|
|
315
|
+
};
|
|
316
|
+
|
|
317
|
+
module.exports.__wbindgen_object_clone_ref = function(arg0) {
|
|
318
|
+
const ret = getObject(arg0);
|
|
319
|
+
return addHeapObject(ret);
|
|
320
|
+
};
|
|
321
|
+
|
|
317
322
|
module.exports.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
|
|
318
323
|
const ret = getObject(arg0) == getObject(arg1);
|
|
319
324
|
return ret;
|
|
@@ -331,11 +336,6 @@ module.exports.__wbindgen_number_new = function(arg0) {
|
|
|
331
336
|
return addHeapObject(ret);
|
|
332
337
|
};
|
|
333
338
|
|
|
334
|
-
module.exports.__wbindgen_object_clone_ref = function(arg0) {
|
|
335
|
-
const ret = getObject(arg0);
|
|
336
|
-
return addHeapObject(ret);
|
|
337
|
-
};
|
|
338
|
-
|
|
339
339
|
module.exports.__wbg_getwithrefkey_15c62c2b8546208d = function(arg0, arg1) {
|
|
340
340
|
const ret = getObject(arg0)[getObject(arg1)];
|
|
341
341
|
return addHeapObject(ret);
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rollup/wasm-node",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "Next-generation ES module bundler with Node wasm",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -34,25 +34,25 @@
|
|
|
34
34
|
"@codemirror/language": "^6.9.1",
|
|
35
35
|
"@codemirror/search": "^6.5.4",
|
|
36
36
|
"@codemirror/state": "^6.2.1",
|
|
37
|
-
"@codemirror/view": "^6.21.
|
|
37
|
+
"@codemirror/view": "^6.21.3",
|
|
38
38
|
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
39
39
|
"@mermaid-js/mermaid-cli": "^10.4.0",
|
|
40
40
|
"@napi-rs/cli": "^2.16.3",
|
|
41
|
-
"@rollup/plugin-alias": "^5.0.
|
|
42
|
-
"@rollup/plugin-buble": "^1.0.
|
|
43
|
-
"@rollup/plugin-commonjs": "^25.0.
|
|
44
|
-
"@rollup/plugin-json": "^6.0.
|
|
45
|
-
"@rollup/plugin-node-resolve": "^15.2.
|
|
46
|
-
"@rollup/plugin-replace": "^5.0.
|
|
47
|
-
"@rollup/plugin-terser": "^0.4.
|
|
48
|
-
"@rollup/plugin-typescript": "11.1.
|
|
49
|
-
"@rollup/pluginutils": "^5.0.
|
|
41
|
+
"@rollup/plugin-alias": "^5.0.1",
|
|
42
|
+
"@rollup/plugin-buble": "^1.0.3",
|
|
43
|
+
"@rollup/plugin-commonjs": "^25.0.5",
|
|
44
|
+
"@rollup/plugin-json": "^6.0.1",
|
|
45
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
46
|
+
"@rollup/plugin-replace": "^5.0.3",
|
|
47
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
48
|
+
"@rollup/plugin-typescript": "11.1.5",
|
|
49
|
+
"@rollup/pluginutils": "^5.0.5",
|
|
50
50
|
"@types/estree": "1.0.2",
|
|
51
51
|
"@types/mocha": "^10.0.2",
|
|
52
52
|
"@types/node": "18.0.0",
|
|
53
53
|
"@types/yargs-parser": "^21.0.1",
|
|
54
|
-
"@typescript-eslint/eslint-plugin": "^6.7.
|
|
55
|
-
"@typescript-eslint/parser": "^6.7.
|
|
54
|
+
"@typescript-eslint/eslint-plugin": "^6.7.5",
|
|
55
|
+
"@typescript-eslint/parser": "^6.7.5",
|
|
56
56
|
"@vue/eslint-config-prettier": "^8.0.0",
|
|
57
57
|
"@vue/eslint-config-typescript": "^12.0.0",
|
|
58
58
|
"acorn": "^8.10.0",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"date-time": "^4.0.0",
|
|
67
67
|
"es5-shim": "^4.6.7",
|
|
68
68
|
"es6-shim": "^0.35.8",
|
|
69
|
-
"eslint": "^8.
|
|
69
|
+
"eslint": "^8.51.0",
|
|
70
70
|
"eslint-config-prettier": "^9.0.0",
|
|
71
71
|
"eslint-plugin-import": "^2.28.1",
|
|
72
72
|
"eslint-plugin-prettier": "^5.0.0",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"is-reference": "^3.0.2",
|
|
83
83
|
"lint-staged": "^14.0.1",
|
|
84
84
|
"locate-character": "^3.0.0",
|
|
85
|
-
"magic-string": "^0.30.
|
|
85
|
+
"magic-string": "^0.30.5",
|
|
86
86
|
"mocha": "^10.2.0",
|
|
87
87
|
"nyc": "^15.1.0",
|
|
88
88
|
"pinia": "^2.1.6",
|
|
@@ -90,8 +90,8 @@
|
|
|
90
90
|
"pretty-bytes": "^6.1.1",
|
|
91
91
|
"pretty-ms": "^8.0.0",
|
|
92
92
|
"requirejs": "^2.3.6",
|
|
93
|
-
"rollup": "^
|
|
94
|
-
"rollup-plugin-license": "
|
|
93
|
+
"rollup": "^4.0.2",
|
|
94
|
+
"rollup-plugin-license": "github:lukastaegert/rollup-plugin-license",
|
|
95
95
|
"rollup-plugin-string": "^3.0.0",
|
|
96
96
|
"rollup-plugin-thatworks": "^1.0.4",
|
|
97
97
|
"semver": "^7.5.4",
|