@rollup/wasm-node 4.3.0 → 4.3.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 +4 -3
- package/dist/es/shared/parseAst.js +3 -3
- 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.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 +3 -3
- package/dist/shared/rollup.js +4 -3
- 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 +8 -8
- package/dist/wasm-node/bindings_wasm_bg.wasm +0 -0
- package/package.json +12 -11
package/dist/bin/rollup
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/*
|
|
3
3
|
@license
|
|
4
|
-
Rollup.js v4.3.
|
|
5
|
-
|
|
4
|
+
Rollup.js v4.3.1
|
|
5
|
+
Sat, 11 Nov 2023 07:57:25 GMT - commit 52c55bb1e17154ae6d01fb40e0e4a3589bc20a8f
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
8
8
|
|
package/dist/es/getLogFilter.js
CHANGED
package/dist/es/parseAst.js
CHANGED
package/dist/es/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.3.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.3.1
|
|
4
|
+
Sat, 11 Nov 2023 07:57:25 GMT - commit 52c55bb1e17154ae6d01fb40e0e4a3589bc20a8f
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -16,7 +16,7 @@ import { xxhashBase64Url } from '../../native.js';
|
|
|
16
16
|
import { lstat, realpath, readdir, readFile, mkdir, writeFile } from 'node:fs/promises';
|
|
17
17
|
import * as tty from 'tty';
|
|
18
18
|
|
|
19
|
-
var version = "4.3.
|
|
19
|
+
var version = "4.3.1";
|
|
20
20
|
|
|
21
21
|
const comma = ','.charCodeAt(0);
|
|
22
22
|
const semicolon = ';'.charCodeAt(0);
|
|
@@ -19626,6 +19626,7 @@ async function mergeOptions(config, watchMode, rawCommandOptions = EMPTY_COMMAND
|
|
|
19626
19626
|
'environment',
|
|
19627
19627
|
'failAfterWarnings',
|
|
19628
19628
|
'filterLogs',
|
|
19629
|
+
'forceExit',
|
|
19629
19630
|
'plugin',
|
|
19630
19631
|
'silent',
|
|
19631
19632
|
'stdin',
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.3.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.3.1
|
|
4
|
+
Sat, 11 Nov 2023 07:57:25 GMT - commit 52c55bb1e17154ae6d01fb40e0e4a3589bc20a8f
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -335,7 +335,7 @@ const URL_WATCH = 'configuration-options/#watch';
|
|
|
335
335
|
function error(base) {
|
|
336
336
|
if (!(base instanceof Error)) {
|
|
337
337
|
base = Object.assign(new Error(base.message), base);
|
|
338
|
-
Object.defineProperty(base, 'name', { value: 'RollupError' });
|
|
338
|
+
Object.defineProperty(base, 'name', { value: 'RollupError', writable: true });
|
|
339
339
|
}
|
|
340
340
|
throw base;
|
|
341
341
|
}
|
package/dist/es/shared/watch.js
CHANGED
package/dist/getLogFilter.js
CHANGED
package/dist/loadConfigFile.js
CHANGED
package/dist/parseAst.js
CHANGED
package/dist/rollup.js
CHANGED
package/dist/shared/index.js
CHANGED
package/dist/shared/parseAst.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.3.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.3.1
|
|
4
|
+
Sat, 11 Nov 2023 07:57:25 GMT - commit 52c55bb1e17154ae6d01fb40e0e4a3589bc20a8f
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -277,7 +277,7 @@ const URL_CONFIGURATION_FILES = 'command-line-interface/#configuration-files';
|
|
|
277
277
|
function error(base) {
|
|
278
278
|
if (!(base instanceof Error)) {
|
|
279
279
|
base = Object.assign(new Error(base.message), base);
|
|
280
|
-
Object.defineProperty(base, 'name', { value: 'RollupError' });
|
|
280
|
+
Object.defineProperty(base, 'name', { value: 'RollupError', writable: true });
|
|
281
281
|
}
|
|
282
282
|
throw base;
|
|
283
283
|
}
|
package/dist/shared/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.3.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.3.1
|
|
4
|
+
Sat, 11 Nov 2023 07:57:25 GMT - commit 52c55bb1e17154ae6d01fb40e0e4a3589bc20a8f
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -31,7 +31,7 @@ function _interopNamespaceDefault(e) {
|
|
|
31
31
|
|
|
32
32
|
const tty__namespace = /*#__PURE__*/_interopNamespaceDefault(tty);
|
|
33
33
|
|
|
34
|
-
var version = "4.3.
|
|
34
|
+
var version = "4.3.1";
|
|
35
35
|
|
|
36
36
|
function ensureArray$1(items) {
|
|
37
37
|
if (Array.isArray(items)) {
|
|
@@ -1169,6 +1169,7 @@ async function mergeOptions(config, watchMode, rawCommandOptions = EMPTY_COMMAND
|
|
|
1169
1169
|
'environment',
|
|
1170
1170
|
'failAfterWarnings',
|
|
1171
1171
|
'filterLogs',
|
|
1172
|
+
'forceExit',
|
|
1172
1173
|
'plugin',
|
|
1173
1174
|
'silent',
|
|
1174
1175
|
'stdin',
|
package/dist/shared/watch-cli.js
CHANGED
package/dist/shared/watch.js
CHANGED
|
@@ -172,7 +172,7 @@ module.exports.__wbindgen_object_drop_ref = function(arg0) {
|
|
|
172
172
|
takeObject(arg0);
|
|
173
173
|
};
|
|
174
174
|
|
|
175
|
-
module.exports.
|
|
175
|
+
module.exports.__wbg_crypto_58f13aa23ffcb166 = function(arg0) {
|
|
176
176
|
const ret = getObject(arg0).crypto;
|
|
177
177
|
return addHeapObject(ret);
|
|
178
178
|
};
|
|
@@ -183,17 +183,17 @@ module.exports.__wbindgen_is_object = function(arg0) {
|
|
|
183
183
|
return ret;
|
|
184
184
|
};
|
|
185
185
|
|
|
186
|
-
module.exports.
|
|
186
|
+
module.exports.__wbg_process_5b786e71d465a513 = function(arg0) {
|
|
187
187
|
const ret = getObject(arg0).process;
|
|
188
188
|
return addHeapObject(ret);
|
|
189
189
|
};
|
|
190
190
|
|
|
191
|
-
module.exports.
|
|
191
|
+
module.exports.__wbg_versions_c2ab80650590b6a2 = function(arg0) {
|
|
192
192
|
const ret = getObject(arg0).versions;
|
|
193
193
|
return addHeapObject(ret);
|
|
194
194
|
};
|
|
195
195
|
|
|
196
|
-
module.exports.
|
|
196
|
+
module.exports.__wbg_node_523d7bd03ef69fba = function(arg0) {
|
|
197
197
|
const ret = getObject(arg0).node;
|
|
198
198
|
return addHeapObject(ret);
|
|
199
199
|
};
|
|
@@ -203,12 +203,12 @@ module.exports.__wbindgen_is_string = function(arg0) {
|
|
|
203
203
|
return ret;
|
|
204
204
|
};
|
|
205
205
|
|
|
206
|
-
module.exports.
|
|
206
|
+
module.exports.__wbg_msCrypto_abcb1295e768d1f2 = function(arg0) {
|
|
207
207
|
const ret = getObject(arg0).msCrypto;
|
|
208
208
|
return addHeapObject(ret);
|
|
209
209
|
};
|
|
210
210
|
|
|
211
|
-
module.exports.
|
|
211
|
+
module.exports.__wbg_require_2784e593a4674877 = function() { return handleError(function () {
|
|
212
212
|
const ret = module.require;
|
|
213
213
|
return addHeapObject(ret);
|
|
214
214
|
}, arguments) };
|
|
@@ -223,11 +223,11 @@ module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
|
223
223
|
return addHeapObject(ret);
|
|
224
224
|
};
|
|
225
225
|
|
|
226
|
-
module.exports.
|
|
226
|
+
module.exports.__wbg_randomFillSync_a0d98aa11c81fe89 = function() { return handleError(function (arg0, arg1) {
|
|
227
227
|
getObject(arg0).randomFillSync(takeObject(arg1));
|
|
228
228
|
}, arguments) };
|
|
229
229
|
|
|
230
|
-
module.exports.
|
|
230
|
+
module.exports.__wbg_getRandomValues_504510b5564925af = function() { return handleError(function (arg0, arg1) {
|
|
231
231
|
getObject(arg0).getRandomValues(getObject(arg1));
|
|
232
232
|
}, arguments) };
|
|
233
233
|
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rollup/wasm-node",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.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,10 +34,10 @@
|
|
|
34
34
|
"@codemirror/language": "^6.9.2",
|
|
35
35
|
"@codemirror/search": "^6.5.4",
|
|
36
36
|
"@codemirror/state": "^6.3.1",
|
|
37
|
-
"@codemirror/view": "^6.
|
|
37
|
+
"@codemirror/view": "^6.22.0",
|
|
38
38
|
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
39
39
|
"@mermaid-js/mermaid-cli": "^10.6.0",
|
|
40
|
-
"@napi-rs/cli": "^2.16.
|
|
40
|
+
"@napi-rs/cli": "^2.16.5",
|
|
41
41
|
"@rollup/plugin-alias": "^5.0.1",
|
|
42
42
|
"@rollup/plugin-buble": "^1.0.3",
|
|
43
43
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
"@rollup/plugin-terser": "^0.4.4",
|
|
48
48
|
"@rollup/plugin-typescript": "11.1.5",
|
|
49
49
|
"@rollup/pluginutils": "^5.0.5",
|
|
50
|
-
"@types/estree": "1.0.
|
|
50
|
+
"@types/estree": "1.0.5",
|
|
51
51
|
"@types/mocha": "^10.0.3",
|
|
52
52
|
"@types/node": "18.0.0",
|
|
53
53
|
"@types/yargs-parser": "^21.0.2",
|
|
54
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
55
|
-
"@typescript-eslint/parser": "^6.
|
|
54
|
+
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
55
|
+
"@typescript-eslint/parser": "^6.10.0",
|
|
56
56
|
"@vue/eslint-config-prettier": "^8.0.0",
|
|
57
57
|
"@vue/eslint-config-typescript": "^12.0.0",
|
|
58
58
|
"acorn": "^8.11.2",
|
|
@@ -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.53.0",
|
|
70
70
|
"eslint-config-prettier": "^9.0.0",
|
|
71
71
|
"eslint-plugin-import": "^2.29.0",
|
|
72
72
|
"eslint-plugin-prettier": "^5.0.1",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"pretty-bytes": "^6.1.1",
|
|
90
90
|
"pretty-ms": "^8.0.0",
|
|
91
91
|
"requirejs": "^2.3.6",
|
|
92
|
-
"rollup": "^4.
|
|
92
|
+
"rollup": "^4.3.0",
|
|
93
93
|
"rollup-plugin-license": "^3.2.0",
|
|
94
94
|
"rollup-plugin-string": "^3.0.0",
|
|
95
95
|
"rollup-plugin-thatworks": "^1.0.4",
|
|
@@ -99,17 +99,18 @@
|
|
|
99
99
|
"source-map": "^0.7.4",
|
|
100
100
|
"source-map-support": "^0.5.21",
|
|
101
101
|
"systemjs": "^6.14.2",
|
|
102
|
-
"terser": "^5.
|
|
102
|
+
"terser": "^5.24.0",
|
|
103
103
|
"tslib": "^2.6.2",
|
|
104
104
|
"typescript": "^5.2.2",
|
|
105
105
|
"vite": "^4.5.0",
|
|
106
|
-
"vitepress": "^1.0.0-rc.
|
|
107
|
-
"vue": "^3.3.
|
|
106
|
+
"vitepress": "^1.0.0-rc.25",
|
|
107
|
+
"vue": "^3.3.8",
|
|
108
108
|
"wasm-pack": "^0.12.1",
|
|
109
109
|
"weak-napi": "^2.0.2",
|
|
110
110
|
"yargs-parser": "^21.1.1"
|
|
111
111
|
},
|
|
112
112
|
"overrides": {
|
|
113
|
+
"axios": "^1.6.0",
|
|
113
114
|
"semver": "^7.5.4"
|
|
114
115
|
},
|
|
115
116
|
"files": [
|