@rollup/wasm-node 4.28.0 → 4.29.0-0
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 +1440 -649
- 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.d.ts +1 -0
- 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 +1437 -686
- package/dist/shared/watch-cli.js +4 -20
- package/dist/shared/watch.js +3 -3
- package/dist/wasm-node/bindings_wasm.js +115 -111
- package/dist/wasm-node/bindings_wasm_bg.wasm +0 -0
- package/package.json +22 -23
package/dist/shared/watch-cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.29.0-0
|
|
4
|
+
Mon, 16 Dec 2024 06:39:21 GMT - commit 879d03d68890f365f880e30c69b58377b8743407
|
|
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('fs');
|
|
25
24
|
require('util');
|
|
25
|
+
require('fs');
|
|
26
26
|
require('stream');
|
|
27
27
|
require('os');
|
|
28
28
|
require('./fsevents-importer.js');
|
|
@@ -366,23 +366,7 @@ const {
|
|
|
366
366
|
*
|
|
367
367
|
* Returns a function that may be used to unload signal-exit.
|
|
368
368
|
*/
|
|
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());
|
|
369
|
+
onExit} = signalExitWrap(processOk(process$1) ? new SignalExit(process$1) : new SignalExitFallback());
|
|
386
370
|
|
|
387
371
|
const CLEAR_SCREEN = '\u001Bc';
|
|
388
372
|
function getResetScreen(configs, allowClearScreen) {
|
package/dist/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.29.0-0
|
|
4
|
+
Mon, 16 Dec 2024 06:39:21 GMT - commit 879d03d68890f365f880e30c69b58377b8743407
|
|
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('fs');
|
|
26
25
|
require('util');
|
|
26
|
+
require('fs');
|
|
27
27
|
require('stream');
|
|
28
28
|
require('os');
|
|
29
29
|
require('./fsevents-importer.js');
|
|
@@ -12,16 +12,21 @@ function getObject(idx) { return heap[idx]; }
|
|
|
12
12
|
|
|
13
13
|
let heap_next = heap.length;
|
|
14
14
|
|
|
15
|
-
function
|
|
16
|
-
if (
|
|
17
|
-
|
|
18
|
-
heap_next = idx;
|
|
15
|
+
function addHeapObject(obj) {
|
|
16
|
+
if (heap_next === heap.length) heap.push(heap.length + 1);
|
|
17
|
+
const idx = heap_next;
|
|
18
|
+
heap_next = heap[idx];
|
|
19
|
+
|
|
20
|
+
heap[idx] = obj;
|
|
21
|
+
return idx;
|
|
19
22
|
}
|
|
20
23
|
|
|
21
|
-
function
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
24
|
+
function handleError(f, args) {
|
|
25
|
+
try {
|
|
26
|
+
return f.apply(this, args);
|
|
27
|
+
} catch (e) {
|
|
28
|
+
wasm.__wbindgen_export_0(addHeapObject(e));
|
|
29
|
+
}
|
|
25
30
|
}
|
|
26
31
|
|
|
27
32
|
let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
@@ -42,13 +47,20 @@ function getStringFromWasm0(ptr, len) {
|
|
|
42
47
|
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
43
48
|
}
|
|
44
49
|
|
|
45
|
-
function
|
|
46
|
-
if (
|
|
47
|
-
|
|
48
|
-
heap_next =
|
|
50
|
+
function dropObject(idx) {
|
|
51
|
+
if (idx < 132) return;
|
|
52
|
+
heap[idx] = heap_next;
|
|
53
|
+
heap_next = idx;
|
|
54
|
+
}
|
|
49
55
|
|
|
50
|
-
|
|
51
|
-
|
|
56
|
+
function takeObject(idx) {
|
|
57
|
+
const ret = getObject(idx);
|
|
58
|
+
dropObject(idx);
|
|
59
|
+
return ret;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function isLikeNone(x) {
|
|
63
|
+
return x === undefined || x === null;
|
|
52
64
|
}
|
|
53
65
|
|
|
54
66
|
let WASM_VECTOR_LEN = 0;
|
|
@@ -129,13 +141,13 @@ function getArrayU8FromWasm0(ptr, len) {
|
|
|
129
141
|
module.exports.parse = function(code, allow_return_outside_function, jsx) {
|
|
130
142
|
try {
|
|
131
143
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
132
|
-
const ptr0 = passStringToWasm0(code, wasm.
|
|
144
|
+
const ptr0 = passStringToWasm0(code, wasm.__wbindgen_export_1, wasm.__wbindgen_export_2);
|
|
133
145
|
const len0 = WASM_VECTOR_LEN;
|
|
134
146
|
wasm.parse(retptr, ptr0, len0, allow_return_outside_function, jsx);
|
|
135
147
|
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
136
148
|
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
137
149
|
var v2 = getArrayU8FromWasm0(r0, r1).slice();
|
|
138
|
-
wasm.
|
|
150
|
+
wasm.__wbindgen_export_3(r0, r1 * 1, 1);
|
|
139
151
|
return v2;
|
|
140
152
|
} finally {
|
|
141
153
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
@@ -159,7 +171,7 @@ module.exports.xxhashBase64Url = function(input) {
|
|
|
159
171
|
return getStringFromWasm0(r0, r1);
|
|
160
172
|
} finally {
|
|
161
173
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
162
|
-
wasm.
|
|
174
|
+
wasm.__wbindgen_export_3(deferred1_0, deferred1_1, 1);
|
|
163
175
|
}
|
|
164
176
|
};
|
|
165
177
|
|
|
@@ -180,7 +192,7 @@ module.exports.xxhashBase36 = function(input) {
|
|
|
180
192
|
return getStringFromWasm0(r0, r1);
|
|
181
193
|
} finally {
|
|
182
194
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
183
|
-
wasm.
|
|
195
|
+
wasm.__wbindgen_export_3(deferred1_0, deferred1_1, 1);
|
|
184
196
|
}
|
|
185
197
|
};
|
|
186
198
|
|
|
@@ -201,169 +213,161 @@ module.exports.xxhashBase16 = function(input) {
|
|
|
201
213
|
return getStringFromWasm0(r0, r1);
|
|
202
214
|
} finally {
|
|
203
215
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
204
|
-
wasm.
|
|
216
|
+
wasm.__wbindgen_export_3(deferred1_0, deferred1_1, 1);
|
|
205
217
|
}
|
|
206
218
|
};
|
|
207
219
|
|
|
208
|
-
function
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
} catch (e) {
|
|
212
|
-
wasm.__wbindgen_export_3(addHeapObject(e));
|
|
213
|
-
}
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
module.exports.__wbindgen_object_drop_ref = function(arg0) {
|
|
217
|
-
takeObject(arg0);
|
|
220
|
+
module.exports.__wbg_buffer_61b7ce01341d7f88 = function(arg0) {
|
|
221
|
+
const ret = getObject(arg0).buffer;
|
|
222
|
+
return addHeapObject(ret);
|
|
218
223
|
};
|
|
219
224
|
|
|
220
|
-
module.exports.
|
|
225
|
+
module.exports.__wbg_call_500db948e69c7330 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
226
|
+
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
|
|
227
|
+
return addHeapObject(ret);
|
|
228
|
+
}, arguments) };
|
|
229
|
+
|
|
230
|
+
module.exports.__wbg_call_b0d8e36992d9900d = function() { return handleError(function (arg0, arg1) {
|
|
231
|
+
const ret = getObject(arg0).call(getObject(arg1));
|
|
232
|
+
return addHeapObject(ret);
|
|
233
|
+
}, arguments) };
|
|
234
|
+
|
|
235
|
+
module.exports.__wbg_crypto_ed58b8e10a292839 = function(arg0) {
|
|
221
236
|
const ret = getObject(arg0).crypto;
|
|
222
237
|
return addHeapObject(ret);
|
|
223
238
|
};
|
|
224
239
|
|
|
225
|
-
module.exports.
|
|
226
|
-
|
|
227
|
-
|
|
240
|
+
module.exports.__wbg_getRandomValues_bcb4912f16000dc4 = function() { return handleError(function (arg0, arg1) {
|
|
241
|
+
getObject(arg0).getRandomValues(getObject(arg1));
|
|
242
|
+
}, arguments) };
|
|
243
|
+
|
|
244
|
+
module.exports.__wbg_length_65d1cd11729ced11 = function(arg0) {
|
|
245
|
+
const ret = getObject(arg0).length;
|
|
228
246
|
return ret;
|
|
229
247
|
};
|
|
230
248
|
|
|
231
|
-
module.exports.
|
|
232
|
-
const ret = getObject(arg0).
|
|
249
|
+
module.exports.__wbg_msCrypto_0a36e2ec3a343d26 = function(arg0) {
|
|
250
|
+
const ret = getObject(arg0).msCrypto;
|
|
233
251
|
return addHeapObject(ret);
|
|
234
252
|
};
|
|
235
253
|
|
|
236
|
-
module.exports.
|
|
237
|
-
const ret = getObject(arg0)
|
|
254
|
+
module.exports.__wbg_new_3ff5b33b1ce712df = function(arg0) {
|
|
255
|
+
const ret = new Uint8Array(getObject(arg0));
|
|
238
256
|
return addHeapObject(ret);
|
|
239
257
|
};
|
|
240
258
|
|
|
241
|
-
module.exports.
|
|
242
|
-
const ret =
|
|
259
|
+
module.exports.__wbg_newnoargs_fd9e4bf8be2bc16d = function(arg0, arg1) {
|
|
260
|
+
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
243
261
|
return addHeapObject(ret);
|
|
244
262
|
};
|
|
245
263
|
|
|
246
|
-
module.exports.
|
|
247
|
-
const ret =
|
|
248
|
-
return ret;
|
|
264
|
+
module.exports.__wbg_newwithbyteoffsetandlength_ba35896968751d91 = function(arg0, arg1, arg2) {
|
|
265
|
+
const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
|
266
|
+
return addHeapObject(ret);
|
|
249
267
|
};
|
|
250
268
|
|
|
251
|
-
module.exports.
|
|
252
|
-
const ret =
|
|
269
|
+
module.exports.__wbg_newwithlength_34ce8f1051e74449 = function(arg0) {
|
|
270
|
+
const ret = new Uint8Array(arg0 >>> 0);
|
|
253
271
|
return addHeapObject(ret);
|
|
254
|
-
}, arguments) };
|
|
255
|
-
|
|
256
|
-
module.exports.__wbindgen_is_function = function(arg0) {
|
|
257
|
-
const ret = typeof(getObject(arg0)) === 'function';
|
|
258
|
-
return ret;
|
|
259
272
|
};
|
|
260
273
|
|
|
261
|
-
module.exports.
|
|
262
|
-
const ret =
|
|
274
|
+
module.exports.__wbg_node_02999533c4ea02e3 = function(arg0) {
|
|
275
|
+
const ret = getObject(arg0).node;
|
|
263
276
|
return addHeapObject(ret);
|
|
264
277
|
};
|
|
265
278
|
|
|
266
|
-
module.exports.
|
|
267
|
-
const ret = getObject(arg0).
|
|
279
|
+
module.exports.__wbg_process_5c1d670bc53614b8 = function(arg0) {
|
|
280
|
+
const ret = getObject(arg0).process;
|
|
268
281
|
return addHeapObject(ret);
|
|
269
282
|
};
|
|
270
283
|
|
|
271
|
-
module.exports.
|
|
284
|
+
module.exports.__wbg_randomFillSync_ab2cfe79ebbf2740 = function() { return handleError(function (arg0, arg1) {
|
|
272
285
|
getObject(arg0).randomFillSync(takeObject(arg1));
|
|
273
286
|
}, arguments) };
|
|
274
287
|
|
|
275
|
-
module.exports.
|
|
276
|
-
|
|
288
|
+
module.exports.__wbg_require_79b1e9274cde3c87 = function() { return handleError(function () {
|
|
289
|
+
const ret = module.require;
|
|
290
|
+
return addHeapObject(ret);
|
|
277
291
|
}, arguments) };
|
|
278
292
|
|
|
279
|
-
module.exports.
|
|
280
|
-
|
|
281
|
-
return addHeapObject(ret);
|
|
293
|
+
module.exports.__wbg_set_23d69db4e5c66a6e = function(arg0, arg1, arg2) {
|
|
294
|
+
getObject(arg0).set(getObject(arg1), arg2 >>> 0);
|
|
282
295
|
};
|
|
283
296
|
|
|
284
|
-
module.exports.
|
|
285
|
-
const ret =
|
|
286
|
-
return addHeapObject(ret);
|
|
297
|
+
module.exports.__wbg_static_accessor_GLOBAL_0be7472e492ad3e3 = function() {
|
|
298
|
+
const ret = typeof global === 'undefined' ? null : global;
|
|
299
|
+
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
287
300
|
};
|
|
288
301
|
|
|
289
|
-
module.exports.
|
|
290
|
-
const ret =
|
|
291
|
-
return addHeapObject(ret);
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
module.exports.__wbg_self_bf91bf94d9e04084 = function() { return handleError(function () {
|
|
295
|
-
const ret = self.self;
|
|
296
|
-
return addHeapObject(ret);
|
|
297
|
-
}, arguments) };
|
|
298
|
-
|
|
299
|
-
module.exports.__wbg_window_52dd9f07d03fd5f8 = function() { return handleError(function () {
|
|
300
|
-
const ret = window.window;
|
|
301
|
-
return addHeapObject(ret);
|
|
302
|
-
}, arguments) };
|
|
303
|
-
|
|
304
|
-
module.exports.__wbg_globalThis_05c129bf37fcf1be = function() { return handleError(function () {
|
|
305
|
-
const ret = globalThis.globalThis;
|
|
306
|
-
return addHeapObject(ret);
|
|
307
|
-
}, arguments) };
|
|
302
|
+
module.exports.__wbg_static_accessor_GLOBAL_THIS_1a6eb482d12c9bfb = function() {
|
|
303
|
+
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
304
|
+
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
305
|
+
};
|
|
308
306
|
|
|
309
|
-
module.exports.
|
|
310
|
-
const ret =
|
|
311
|
-
return addHeapObject(ret);
|
|
312
|
-
}
|
|
307
|
+
module.exports.__wbg_static_accessor_SELF_1dc398a895c82351 = function() {
|
|
308
|
+
const ret = typeof self === 'undefined' ? null : self;
|
|
309
|
+
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
310
|
+
};
|
|
313
311
|
|
|
314
|
-
module.exports.
|
|
315
|
-
const ret =
|
|
316
|
-
return ret;
|
|
312
|
+
module.exports.__wbg_static_accessor_WINDOW_ae1c80c7eea8d64a = function() {
|
|
313
|
+
const ret = typeof window === 'undefined' ? null : window;
|
|
314
|
+
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
317
315
|
};
|
|
318
316
|
|
|
319
|
-
module.exports.
|
|
320
|
-
const ret = getObject(arg0).
|
|
317
|
+
module.exports.__wbg_subarray_46adeb9b86949d12 = function(arg0, arg1, arg2) {
|
|
318
|
+
const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0);
|
|
321
319
|
return addHeapObject(ret);
|
|
322
|
-
}
|
|
320
|
+
};
|
|
323
321
|
|
|
324
|
-
module.exports.
|
|
325
|
-
const ret = getObject(arg0).
|
|
322
|
+
module.exports.__wbg_versions_c71aa1626a93e0a1 = function(arg0) {
|
|
323
|
+
const ret = getObject(arg0).versions;
|
|
326
324
|
return addHeapObject(ret);
|
|
327
325
|
};
|
|
328
326
|
|
|
329
|
-
module.exports.
|
|
330
|
-
const ret =
|
|
331
|
-
return
|
|
327
|
+
module.exports.__wbindgen_is_function = function(arg0) {
|
|
328
|
+
const ret = typeof(getObject(arg0)) === 'function';
|
|
329
|
+
return ret;
|
|
332
330
|
};
|
|
333
331
|
|
|
334
|
-
module.exports.
|
|
335
|
-
const
|
|
336
|
-
|
|
332
|
+
module.exports.__wbindgen_is_object = function(arg0) {
|
|
333
|
+
const val = getObject(arg0);
|
|
334
|
+
const ret = typeof(val) === 'object' && val !== null;
|
|
335
|
+
return ret;
|
|
337
336
|
};
|
|
338
337
|
|
|
339
|
-
module.exports.
|
|
340
|
-
getObject(arg0)
|
|
338
|
+
module.exports.__wbindgen_is_string = function(arg0) {
|
|
339
|
+
const ret = typeof(getObject(arg0)) === 'string';
|
|
340
|
+
return ret;
|
|
341
341
|
};
|
|
342
342
|
|
|
343
|
-
module.exports.
|
|
344
|
-
const ret = getObject(arg0)
|
|
343
|
+
module.exports.__wbindgen_is_undefined = function(arg0) {
|
|
344
|
+
const ret = getObject(arg0) === undefined;
|
|
345
345
|
return ret;
|
|
346
346
|
};
|
|
347
347
|
|
|
348
|
-
module.exports.
|
|
349
|
-
const ret =
|
|
348
|
+
module.exports.__wbindgen_memory = function() {
|
|
349
|
+
const ret = wasm.memory;
|
|
350
350
|
return addHeapObject(ret);
|
|
351
351
|
};
|
|
352
352
|
|
|
353
|
-
module.exports.
|
|
354
|
-
const ret = getObject(arg0)
|
|
353
|
+
module.exports.__wbindgen_object_clone_ref = function(arg0) {
|
|
354
|
+
const ret = getObject(arg0);
|
|
355
355
|
return addHeapObject(ret);
|
|
356
356
|
};
|
|
357
357
|
|
|
358
|
-
module.exports.
|
|
359
|
-
|
|
358
|
+
module.exports.__wbindgen_object_drop_ref = function(arg0) {
|
|
359
|
+
takeObject(arg0);
|
|
360
360
|
};
|
|
361
361
|
|
|
362
|
-
module.exports.
|
|
363
|
-
const ret =
|
|
362
|
+
module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
363
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
364
364
|
return addHeapObject(ret);
|
|
365
365
|
};
|
|
366
366
|
|
|
367
|
+
module.exports.__wbindgen_throw = function(arg0, arg1) {
|
|
368
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
369
|
+
};
|
|
370
|
+
|
|
367
371
|
const path = require('path').join(__dirname, 'bindings_wasm_bg.wasm');
|
|
368
372
|
const bytes = require('fs').readFileSync(path);
|
|
369
373
|
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rollup/wasm-node",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.29.0-0",
|
|
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,14 +34,14 @@
|
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@codemirror/commands": "^6.7.1",
|
|
36
36
|
"@codemirror/lang-javascript": "^6.2.2",
|
|
37
|
-
"@codemirror/language": "^6.10.
|
|
37
|
+
"@codemirror/language": "^6.10.6",
|
|
38
38
|
"@codemirror/search": "^6.5.8",
|
|
39
|
-
"@codemirror/state": "^6.
|
|
40
|
-
"@codemirror/view": "^6.35.
|
|
41
|
-
"@eslint/js": "^9.
|
|
42
|
-
"@inquirer/prompts": "^7.
|
|
39
|
+
"@codemirror/state": "^6.5.0",
|
|
40
|
+
"@codemirror/view": "^6.35.3",
|
|
41
|
+
"@eslint/js": "^9.16.0",
|
|
42
|
+
"@inquirer/prompts": "^7.2.0",
|
|
43
43
|
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
44
|
-
"@mermaid-js/mermaid-cli": "^11.4.
|
|
44
|
+
"@mermaid-js/mermaid-cli": "^11.4.2",
|
|
45
45
|
"@napi-rs/cli": "^2.18.4",
|
|
46
46
|
"@rollup/plugin-alias": "^5.1.1",
|
|
47
47
|
"@rollup/plugin-buble": "^1.0.3",
|
|
@@ -52,9 +52,9 @@
|
|
|
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.24.1",
|
|
56
56
|
"@types/mocha": "^10.0.10",
|
|
57
|
-
"@types/node": "^18.19.
|
|
57
|
+
"@types/node": "^18.19.67",
|
|
58
58
|
"@types/semver": "^7.5.8",
|
|
59
59
|
"@types/yargs-parser": "^21.0.3",
|
|
60
60
|
"@vue/language-server": "^2.1.10",
|
|
@@ -71,32 +71,32 @@
|
|
|
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.16.0",
|
|
75
75
|
"eslint-config-prettier": "^9.1.0",
|
|
76
76
|
"eslint-plugin-prettier": "^5.2.1",
|
|
77
77
|
"eslint-plugin-unicorn": "^56.0.1",
|
|
78
|
-
"eslint-plugin-vue": "^9.
|
|
78
|
+
"eslint-plugin-vue": "^9.32.0",
|
|
79
79
|
"fixturify": "^3.0.0",
|
|
80
80
|
"flru": "^1.0.2",
|
|
81
81
|
"fs-extra": "^11.2.0",
|
|
82
82
|
"github-api": "^3.4.0",
|
|
83
|
-
"globals": "^15.
|
|
83
|
+
"globals": "^15.13.0",
|
|
84
84
|
"husky": "^9.1.7",
|
|
85
85
|
"is-reference": "^3.0.3",
|
|
86
86
|
"lint-staged": "^15.2.10",
|
|
87
87
|
"locate-character": "^3.0.0",
|
|
88
88
|
"magic-string": "^0.30.14",
|
|
89
|
-
"mocha": "^
|
|
89
|
+
"mocha": "^11.0.1",
|
|
90
90
|
"nodemon": "^3.1.7",
|
|
91
91
|
"npm-audit-resolver": "^3.0.0-RC.0",
|
|
92
92
|
"nyc": "^17.1.0",
|
|
93
|
-
"pinia": "^2.
|
|
94
|
-
"prettier": "^3.4.
|
|
93
|
+
"pinia": "^2.3.0",
|
|
94
|
+
"prettier": "^3.4.2",
|
|
95
95
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
96
96
|
"pretty-bytes": "^6.1.1",
|
|
97
97
|
"pretty-ms": "^9.2.0",
|
|
98
98
|
"requirejs": "^2.3.7",
|
|
99
|
-
"rollup": "^4.
|
|
99
|
+
"rollup": "^4.28.1",
|
|
100
100
|
"rollup-plugin-license": "^3.5.3",
|
|
101
101
|
"rollup-plugin-string": "^3.0.0",
|
|
102
102
|
"semver": "^7.6.3",
|
|
@@ -105,11 +105,11 @@
|
|
|
105
105
|
"source-map": "^0.7.4",
|
|
106
106
|
"source-map-support": "^0.5.21",
|
|
107
107
|
"systemjs": "^6.15.1",
|
|
108
|
-
"terser": "^5.
|
|
108
|
+
"terser": "^5.37.0",
|
|
109
109
|
"tslib": "^2.8.1",
|
|
110
110
|
"typescript": "^5.7.2",
|
|
111
|
-
"typescript-eslint": "^8.
|
|
112
|
-
"vite": "^
|
|
111
|
+
"typescript-eslint": "^8.18.0",
|
|
112
|
+
"vite": "^6.0.3",
|
|
113
113
|
"vitepress": "^1.5.0",
|
|
114
114
|
"vue": "^3.5.13",
|
|
115
115
|
"vue-tsc": "^2.1.10",
|
|
@@ -117,13 +117,12 @@
|
|
|
117
117
|
"yargs-parser": "^21.1.1"
|
|
118
118
|
},
|
|
119
119
|
"overrides": {
|
|
120
|
-
"axios": "^1.7.
|
|
120
|
+
"axios": "^1.7.9",
|
|
121
121
|
"semver": "^7.6.3",
|
|
122
|
-
"
|
|
122
|
+
"readable-stream": "npm:@built-in/readable-stream@1"
|
|
123
123
|
},
|
|
124
124
|
"comments": {
|
|
125
|
-
"vue-tsc": "This is necessary so that prettier-plugin-organize-imports works correctly in Vue templatges"
|
|
126
|
-
"ws": "mermaid requires an older 8.13.0 version via puppeteer with vulnerabilities"
|
|
125
|
+
"vue-tsc": "This is necessary so that prettier-plugin-organize-imports works correctly in Vue templatges"
|
|
127
126
|
},
|
|
128
127
|
"files": [
|
|
129
128
|
"dist/wasm-node/*.wasm",
|