@rollup/wasm-node 4.14.0 → 4.14.2
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 +5 -5
- 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 +184 -167
- package/dist/es/shared/parseAst.js +114 -99
- 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.js +2 -2
- package/dist/shared/fsevents-importer.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +7 -7
- package/dist/shared/parseAst.js +125 -106
- package/dist/shared/rollup.js +269 -252
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +4 -4
- package/dist/wasm-node/bindings_wasm.js +8 -8
- package/dist/wasm-node/bindings_wasm_bg.wasm +0 -0
- package/package.json +16 -16
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.14.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.14.2
|
|
4
|
+
Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
13
13
|
|
|
14
|
-
const
|
|
14
|
+
const path = require('node:path');
|
|
15
15
|
const process = require('node:process');
|
|
16
16
|
const rollup = require('./rollup.js');
|
|
17
17
|
const node_os = require('node:os');
|
|
@@ -205,7 +205,7 @@ class Task {
|
|
|
205
205
|
this.outputs = this.options.output;
|
|
206
206
|
this.outputFiles = this.outputs.map(output => {
|
|
207
207
|
if (output.file || output.dir)
|
|
208
|
-
return
|
|
208
|
+
return path.resolve(output.file || output.dir);
|
|
209
209
|
return undefined;
|
|
210
210
|
});
|
|
211
211
|
const watchOptions = this.options.watch || {};
|
|
@@ -215,7 +215,7 @@ module.exports.__wbindgen_object_drop_ref = function(arg0) {
|
|
|
215
215
|
takeObject(arg0);
|
|
216
216
|
};
|
|
217
217
|
|
|
218
|
-
module.exports.
|
|
218
|
+
module.exports.__wbg_crypto_566d7465cdbb6b7a = function(arg0) {
|
|
219
219
|
const ret = getObject(arg0).crypto;
|
|
220
220
|
return addHeapObject(ret);
|
|
221
221
|
};
|
|
@@ -226,17 +226,17 @@ module.exports.__wbindgen_is_object = function(arg0) {
|
|
|
226
226
|
return ret;
|
|
227
227
|
};
|
|
228
228
|
|
|
229
|
-
module.exports.
|
|
229
|
+
module.exports.__wbg_process_dc09a8c7d59982f6 = function(arg0) {
|
|
230
230
|
const ret = getObject(arg0).process;
|
|
231
231
|
return addHeapObject(ret);
|
|
232
232
|
};
|
|
233
233
|
|
|
234
|
-
module.exports.
|
|
234
|
+
module.exports.__wbg_versions_d98c6400c6ca2bd8 = function(arg0) {
|
|
235
235
|
const ret = getObject(arg0).versions;
|
|
236
236
|
return addHeapObject(ret);
|
|
237
237
|
};
|
|
238
238
|
|
|
239
|
-
module.exports.
|
|
239
|
+
module.exports.__wbg_node_caaf83d002149bd5 = function(arg0) {
|
|
240
240
|
const ret = getObject(arg0).node;
|
|
241
241
|
return addHeapObject(ret);
|
|
242
242
|
};
|
|
@@ -246,12 +246,12 @@ module.exports.__wbindgen_is_string = function(arg0) {
|
|
|
246
246
|
return ret;
|
|
247
247
|
};
|
|
248
248
|
|
|
249
|
-
module.exports.
|
|
249
|
+
module.exports.__wbg_msCrypto_0b84745e9245cdf6 = function(arg0) {
|
|
250
250
|
const ret = getObject(arg0).msCrypto;
|
|
251
251
|
return addHeapObject(ret);
|
|
252
252
|
};
|
|
253
253
|
|
|
254
|
-
module.exports.
|
|
254
|
+
module.exports.__wbg_require_94a9da52636aacbf = function() { return handleError(function () {
|
|
255
255
|
const ret = module.require;
|
|
256
256
|
return addHeapObject(ret);
|
|
257
257
|
}, arguments) };
|
|
@@ -266,11 +266,11 @@ module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
|
266
266
|
return addHeapObject(ret);
|
|
267
267
|
};
|
|
268
268
|
|
|
269
|
-
module.exports.
|
|
269
|
+
module.exports.__wbg_randomFillSync_290977693942bf03 = function() { return handleError(function (arg0, arg1) {
|
|
270
270
|
getObject(arg0).randomFillSync(takeObject(arg1));
|
|
271
271
|
}, arguments) };
|
|
272
272
|
|
|
273
|
-
module.exports.
|
|
273
|
+
module.exports.__wbg_getRandomValues_260cc23a41afad9a = function() { return handleError(function (arg0, arg1) {
|
|
274
274
|
getObject(arg0).getRandomValues(getObject(arg1));
|
|
275
275
|
}, arguments) };
|
|
276
276
|
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rollup/wasm-node",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.2",
|
|
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/language": "^6.10.1",
|
|
39
39
|
"@codemirror/search": "^6.5.6",
|
|
40
40
|
"@codemirror/state": "^6.4.1",
|
|
41
|
-
"@codemirror/view": "^6.26.
|
|
41
|
+
"@codemirror/view": "^6.26.1",
|
|
42
42
|
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
43
43
|
"@mermaid-js/mermaid-cli": "^10.8.0",
|
|
44
44
|
"@napi-rs/cli": "^2.18.0",
|
|
@@ -51,14 +51,14 @@
|
|
|
51
51
|
"@rollup/plugin-terser": "^0.4.4",
|
|
52
52
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
53
53
|
"@rollup/pluginutils": "^5.1.0",
|
|
54
|
-
"@shikijs/vitepress-twoslash": "^1.2.
|
|
55
|
-
"@types/eslint": "^8.56.
|
|
54
|
+
"@shikijs/vitepress-twoslash": "^1.2.4",
|
|
55
|
+
"@types/eslint": "^8.56.7",
|
|
56
56
|
"@types/inquirer": "^9.0.7",
|
|
57
57
|
"@types/mocha": "^10.0.6",
|
|
58
58
|
"@types/node": "~18.18.14",
|
|
59
59
|
"@types/yargs-parser": "^21.0.3",
|
|
60
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
61
|
-
"@typescript-eslint/parser": "^7.
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^7.6.0",
|
|
61
|
+
"@typescript-eslint/parser": "^7.6.0",
|
|
62
62
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
63
63
|
"@vue/eslint-config-typescript": "^13.0.0",
|
|
64
64
|
"acorn": "^8.11.3",
|
|
@@ -76,26 +76,26 @@
|
|
|
76
76
|
"eslint-config-prettier": "^9.1.0",
|
|
77
77
|
"eslint-plugin-import": "^2.29.1",
|
|
78
78
|
"eslint-plugin-prettier": "^5.1.3",
|
|
79
|
-
"eslint-plugin-unicorn": "^
|
|
80
|
-
"eslint-plugin-vue": "^9.24.
|
|
79
|
+
"eslint-plugin-unicorn": "^52.0.0",
|
|
80
|
+
"eslint-plugin-vue": "^9.24.1",
|
|
81
81
|
"fixturify": "^3.0.0",
|
|
82
82
|
"flru": "^1.0.2",
|
|
83
83
|
"fs-extra": "^11.2.0",
|
|
84
84
|
"github-api": "^3.4.0",
|
|
85
85
|
"husky": "^9.0.11",
|
|
86
|
-
"inquirer": "^9.2.
|
|
86
|
+
"inquirer": "^9.2.17",
|
|
87
87
|
"is-reference": "^3.0.2",
|
|
88
88
|
"lint-staged": "^15.2.2",
|
|
89
89
|
"locate-character": "^3.0.0",
|
|
90
|
-
"magic-string": "^0.30.
|
|
91
|
-
"mocha": "^10.
|
|
90
|
+
"magic-string": "^0.30.9",
|
|
91
|
+
"mocha": "^10.4.0",
|
|
92
92
|
"nyc": "^15.1.0",
|
|
93
93
|
"pinia": "^2.1.7",
|
|
94
94
|
"prettier": "^3.2.5",
|
|
95
95
|
"pretty-bytes": "^6.1.1",
|
|
96
96
|
"pretty-ms": "^9.0.0",
|
|
97
97
|
"requirejs": "^2.3.6",
|
|
98
|
-
"rollup": "^4.
|
|
98
|
+
"rollup": "^4.14.1",
|
|
99
99
|
"rollup-plugin-license": "^3.3.1",
|
|
100
100
|
"rollup-plugin-string": "^3.0.0",
|
|
101
101
|
"semver": "^7.6.0",
|
|
@@ -104,11 +104,11 @@
|
|
|
104
104
|
"source-map": "^0.7.4",
|
|
105
105
|
"source-map-support": "^0.5.21",
|
|
106
106
|
"systemjs": "^6.14.3",
|
|
107
|
-
"terser": "^5.
|
|
107
|
+
"terser": "^5.30.3",
|
|
108
108
|
"tslib": "^2.6.2",
|
|
109
|
-
"typescript": "^5.4.
|
|
110
|
-
"vite": "^5.2.
|
|
111
|
-
"vitepress": "^1.0.
|
|
109
|
+
"typescript": "^5.4.4",
|
|
110
|
+
"vite": "^5.2.8",
|
|
111
|
+
"vitepress": "^1.0.2",
|
|
112
112
|
"vue": "^3.4.21",
|
|
113
113
|
"wasm-pack": "^0.12.1",
|
|
114
114
|
"weak-napi": "^2.0.2",
|