@rollup/wasm-node
Advanced tools
Comparing version 4.28.0 to 4.28.1
/* | ||
@license | ||
Rollup.js v4.28.0 | ||
Sat, 30 Nov 2024 13:15:17 GMT - commit 0595e433edec3608bfc0331d8f02912374e7f7f7 | ||
Rollup.js v4.28.1 | ||
Fri, 06 Dec 2024 11:44:27 GMT - commit e60fb1c5d4e54ed5257495215eeda1bb43cf54ba | ||
@@ -6,0 +6,0 @@ https://github.com/rollup/rollup |
/* | ||
@license | ||
Rollup.js v4.28.0 | ||
Sat, 30 Nov 2024 13:15:17 GMT - commit 0595e433edec3608bfc0331d8f02912374e7f7f7 | ||
Rollup.js v4.28.1 | ||
Fri, 06 Dec 2024 11:44:27 GMT - commit e60fb1c5d4e54ed5257495215eeda1bb43cf54ba | ||
@@ -6,0 +6,0 @@ https://github.com/rollup/rollup |
/* | ||
@license | ||
Rollup.js v4.28.0 | ||
Sat, 30 Nov 2024 13:15:17 GMT - commit 0595e433edec3608bfc0331d8f02912374e7f7f7 | ||
Rollup.js v4.28.1 | ||
Fri, 06 Dec 2024 11:44:27 GMT - commit e60fb1c5d4e54ed5257495215eeda1bb43cf54ba | ||
@@ -6,0 +6,0 @@ https://github.com/rollup/rollup |
/* | ||
@license | ||
Rollup.js v4.28.0 | ||
Sat, 30 Nov 2024 13:15:17 GMT - commit 0595e433edec3608bfc0331d8f02912374e7f7f7 | ||
Rollup.js v4.28.1 | ||
Fri, 06 Dec 2024 11:44:27 GMT - commit e60fb1c5d4e54ed5257495215eeda1bb43cf54ba | ||
@@ -6,0 +6,0 @@ https://github.com/rollup/rollup |
/* | ||
@license | ||
Rollup.js v4.28.0 | ||
Sat, 30 Nov 2024 13:15:17 GMT - commit 0595e433edec3608bfc0331d8f02912374e7f7f7 | ||
Rollup.js v4.28.1 | ||
Fri, 06 Dec 2024 11:44:27 GMT - commit e60fb1c5d4e54ed5257495215eeda1bb43cf54ba | ||
@@ -6,0 +6,0 @@ https://github.com/rollup/rollup |
/* | ||
@license | ||
Rollup.js v4.28.0 | ||
Sat, 30 Nov 2024 13:15:17 GMT - commit 0595e433edec3608bfc0331d8f02912374e7f7f7 | ||
Rollup.js v4.28.1 | ||
Fri, 06 Dec 2024 11:44:27 GMT - commit e60fb1c5d4e54ed5257495215eeda1bb43cf54ba | ||
@@ -6,0 +6,0 @@ https://github.com/rollup/rollup |
@@ -105,2 +105,3 @@ import type * as estree from 'estree'; | ||
version: number; | ||
debugId?: string; | ||
toString(): string; | ||
@@ -107,0 +108,0 @@ toUrl(): string; |
/* | ||
@license | ||
Rollup.js v4.28.0 | ||
Sat, 30 Nov 2024 13:15:17 GMT - commit 0595e433edec3608bfc0331d8f02912374e7f7f7 | ||
Rollup.js v4.28.1 | ||
Fri, 06 Dec 2024 11:44:27 GMT - commit e60fb1c5d4e54ed5257495215eeda1bb43cf54ba | ||
@@ -6,0 +6,0 @@ https://github.com/rollup/rollup |
/* | ||
@license | ||
Rollup.js v4.28.0 | ||
Sat, 30 Nov 2024 13:15:17 GMT - commit 0595e433edec3608bfc0331d8f02912374e7f7f7 | ||
Rollup.js v4.28.1 | ||
Fri, 06 Dec 2024 11:44:27 GMT - commit e60fb1c5d4e54ed5257495215eeda1bb43cf54ba | ||
@@ -6,0 +6,0 @@ https://github.com/rollup/rollup |
/* | ||
@license | ||
Rollup.js v4.28.0 | ||
Sat, 30 Nov 2024 13:15:17 GMT - commit 0595e433edec3608bfc0331d8f02912374e7f7f7 | ||
Rollup.js v4.28.1 | ||
Fri, 06 Dec 2024 11:44:27 GMT - commit e60fb1c5d4e54ed5257495215eeda1bb43cf54ba | ||
@@ -6,0 +6,0 @@ https://github.com/rollup/rollup |
/* | ||
@license | ||
Rollup.js v4.28.0 | ||
Sat, 30 Nov 2024 13:15:17 GMT - commit 0595e433edec3608bfc0331d8f02912374e7f7f7 | ||
Rollup.js v4.28.1 | ||
Fri, 06 Dec 2024 11:44:27 GMT - commit e60fb1c5d4e54ed5257495215eeda1bb43cf54ba | ||
@@ -6,0 +6,0 @@ https://github.com/rollup/rollup |
/* | ||
@license | ||
Rollup.js v4.28.0 | ||
Sat, 30 Nov 2024 13:15:17 GMT - commit 0595e433edec3608bfc0331d8f02912374e7f7f7 | ||
Rollup.js v4.28.1 | ||
Fri, 06 Dec 2024 11:44:27 GMT - commit e60fb1c5d4e54ed5257495215eeda1bb43cf54ba | ||
@@ -6,0 +6,0 @@ https://github.com/rollup/rollup |
@@ -15,12 +15,17 @@ | ||
function dropObject(idx) { | ||
if (idx < 132) return; | ||
heap[idx] = heap_next; | ||
heap_next = idx; | ||
function addHeapObject(obj) { | ||
if (heap_next === heap.length) heap.push(heap.length + 1); | ||
const idx = heap_next; | ||
heap_next = heap[idx]; | ||
heap[idx] = obj; | ||
return idx; | ||
} | ||
function takeObject(idx) { | ||
const ret = getObject(idx); | ||
dropObject(idx); | ||
return ret; | ||
function handleError(f, args) { | ||
try { | ||
return f.apply(this, args); | ||
} catch (e) { | ||
wasm.__wbindgen_export_0(addHeapObject(e)); | ||
} | ||
} | ||
@@ -46,9 +51,12 @@ | ||
function addHeapObject(obj) { | ||
if (heap_next === heap.length) heap.push(heap.length + 1); | ||
const idx = heap_next; | ||
heap_next = heap[idx]; | ||
function dropObject(idx) { | ||
if (idx < 132) return; | ||
heap[idx] = heap_next; | ||
heap_next = idx; | ||
} | ||
heap[idx] = obj; | ||
return idx; | ||
function takeObject(idx) { | ||
const ret = getObject(idx); | ||
dropObject(idx); | ||
return ret; | ||
} | ||
@@ -134,3 +142,3 @@ | ||
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); | ||
const ptr0 = passStringToWasm0(code, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); | ||
const ptr0 = passStringToWasm0(code, wasm.__wbindgen_export_1, wasm.__wbindgen_export_2); | ||
const len0 = WASM_VECTOR_LEN; | ||
@@ -141,3 +149,3 @@ wasm.parse(retptr, ptr0, len0, allow_return_outside_function, jsx); | ||
var v2 = getArrayU8FromWasm0(r0, r1).slice(); | ||
wasm.__wbindgen_export_2(r0, r1 * 1, 1); | ||
wasm.__wbindgen_export_3(r0, r1 * 1, 1); | ||
return v2; | ||
@@ -166,3 +174,3 @@ } finally { | ||
wasm.__wbindgen_add_to_stack_pointer(16); | ||
wasm.__wbindgen_export_2(deferred1_0, deferred1_1, 1); | ||
wasm.__wbindgen_export_3(deferred1_0, deferred1_1, 1); | ||
} | ||
@@ -188,3 +196,3 @@ }; | ||
wasm.__wbindgen_add_to_stack_pointer(16); | ||
wasm.__wbindgen_export_2(deferred1_0, deferred1_1, 1); | ||
wasm.__wbindgen_export_3(deferred1_0, deferred1_1, 1); | ||
} | ||
@@ -210,165 +218,157 @@ }; | ||
wasm.__wbindgen_add_to_stack_pointer(16); | ||
wasm.__wbindgen_export_2(deferred1_0, deferred1_1, 1); | ||
wasm.__wbindgen_export_3(deferred1_0, deferred1_1, 1); | ||
} | ||
}; | ||
function handleError(f, args) { | ||
try { | ||
return f.apply(this, args); | ||
} catch (e) { | ||
wasm.__wbindgen_export_3(addHeapObject(e)); | ||
} | ||
} | ||
module.exports.__wbindgen_object_drop_ref = function(arg0) { | ||
takeObject(arg0); | ||
module.exports.__wbg_buffer_6e1d53ff183194fc = function(arg0) { | ||
const ret = getObject(arg0).buffer; | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbg_crypto_1d1f22824a6a080c = function(arg0) { | ||
const ret = getObject(arg0).crypto; | ||
module.exports.__wbg_call_0411c0c3c424db9a = function() { return handleError(function (arg0, arg1, arg2) { | ||
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2)); | ||
return addHeapObject(ret); | ||
}; | ||
}, arguments) }; | ||
module.exports.__wbindgen_is_object = function(arg0) { | ||
const val = getObject(arg0); | ||
const ret = typeof(val) === 'object' && val !== null; | ||
return ret; | ||
}; | ||
module.exports.__wbg_call_3114932863209ca6 = function() { return handleError(function (arg0, arg1) { | ||
const ret = getObject(arg0).call(getObject(arg1)); | ||
return addHeapObject(ret); | ||
}, arguments) }; | ||
module.exports.__wbg_process_4a72847cc503995b = function(arg0) { | ||
const ret = getObject(arg0).process; | ||
module.exports.__wbg_crypto_ed58b8e10a292839 = function(arg0) { | ||
const ret = getObject(arg0).crypto; | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbg_versions_f686565e586dd935 = function(arg0) { | ||
const ret = getObject(arg0).versions; | ||
module.exports.__wbg_getRandomValues_bcb4912f16000dc4 = function() { return handleError(function (arg0, arg1) { | ||
getObject(arg0).getRandomValues(getObject(arg1)); | ||
}, arguments) }; | ||
module.exports.__wbg_globalThis_1e2ac1d6eee845b3 = function() { return handleError(function () { | ||
const ret = globalThis.globalThis; | ||
return addHeapObject(ret); | ||
}; | ||
}, arguments) }; | ||
module.exports.__wbg_node_104a2ff8d6ea03a2 = function(arg0) { | ||
const ret = getObject(arg0).node; | ||
module.exports.__wbg_global_f25a574ae080367c = function() { return handleError(function () { | ||
const ret = global.global; | ||
return addHeapObject(ret); | ||
}; | ||
}, arguments) }; | ||
module.exports.__wbindgen_is_string = function(arg0) { | ||
const ret = typeof(getObject(arg0)) === 'string'; | ||
module.exports.__wbg_length_2e63ba34c4121df5 = function(arg0) { | ||
const ret = getObject(arg0).length; | ||
return ret; | ||
}; | ||
module.exports.__wbg_require_cca90b1a94a0255b = function() { return handleError(function () { | ||
const ret = module.require; | ||
module.exports.__wbg_msCrypto_0a36e2ec3a343d26 = function(arg0) { | ||
const ret = getObject(arg0).msCrypto; | ||
return addHeapObject(ret); | ||
}, arguments) }; | ||
module.exports.__wbindgen_is_function = function(arg0) { | ||
const ret = typeof(getObject(arg0)) === 'function'; | ||
return ret; | ||
}; | ||
module.exports.__wbindgen_string_new = function(arg0, arg1) { | ||
const ret = getStringFromWasm0(arg0, arg1); | ||
module.exports.__wbg_new_23362fa370a0a372 = function(arg0) { | ||
const ret = new Uint8Array(getObject(arg0)); | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbg_msCrypto_eb05e62b530a1508 = function(arg0) { | ||
const ret = getObject(arg0).msCrypto; | ||
module.exports.__wbg_newnoargs_19a249f4eceaaac3 = function(arg0, arg1) { | ||
const ret = new Function(getStringFromWasm0(arg0, arg1)); | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbg_randomFillSync_5c9c955aa56b6049 = function() { return handleError(function (arg0, arg1) { | ||
getObject(arg0).randomFillSync(takeObject(arg1)); | ||
}, arguments) }; | ||
module.exports.__wbg_getRandomValues_3aa56aa6edec874c = function() { return handleError(function (arg0, arg1) { | ||
getObject(arg0).getRandomValues(getObject(arg1)); | ||
}, arguments) }; | ||
module.exports.__wbindgen_object_clone_ref = function(arg0) { | ||
const ret = getObject(arg0); | ||
module.exports.__wbg_newwithbyteoffsetandlength_ee8def7000b7b2be = function(arg0, arg1, arg2) { | ||
const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0); | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbg_newnoargs_1ede4bf2ebbaaf43 = function(arg0, arg1) { | ||
const ret = new Function(getStringFromWasm0(arg0, arg1)); | ||
module.exports.__wbg_newwithlength_91de49dea5643c87 = function(arg0) { | ||
const ret = new Uint8Array(arg0 >>> 0); | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbg_call_a9ef466721e824f2 = function() { return handleError(function (arg0, arg1) { | ||
const ret = getObject(arg0).call(getObject(arg1)); | ||
module.exports.__wbg_node_02999533c4ea02e3 = function(arg0) { | ||
const ret = getObject(arg0).node; | ||
return addHeapObject(ret); | ||
}, arguments) }; | ||
}; | ||
module.exports.__wbg_self_bf91bf94d9e04084 = function() { return handleError(function () { | ||
const ret = self.self; | ||
module.exports.__wbg_process_5c1d670bc53614b8 = function(arg0) { | ||
const ret = getObject(arg0).process; | ||
return addHeapObject(ret); | ||
}, arguments) }; | ||
}; | ||
module.exports.__wbg_window_52dd9f07d03fd5f8 = function() { return handleError(function () { | ||
const ret = window.window; | ||
return addHeapObject(ret); | ||
module.exports.__wbg_randomFillSync_ab2cfe79ebbf2740 = function() { return handleError(function (arg0, arg1) { | ||
getObject(arg0).randomFillSync(takeObject(arg1)); | ||
}, arguments) }; | ||
module.exports.__wbg_globalThis_05c129bf37fcf1be = function() { return handleError(function () { | ||
const ret = globalThis.globalThis; | ||
module.exports.__wbg_require_79b1e9274cde3c87 = function() { return handleError(function () { | ||
const ret = module.require; | ||
return addHeapObject(ret); | ||
}, arguments) }; | ||
module.exports.__wbg_global_3eca19bb09e9c484 = function() { return handleError(function () { | ||
const ret = global.global; | ||
module.exports.__wbg_self_ac4343e4047b83cc = function() { return handleError(function () { | ||
const ret = self.self; | ||
return addHeapObject(ret); | ||
}, arguments) }; | ||
module.exports.__wbindgen_is_undefined = function(arg0) { | ||
const ret = getObject(arg0) === undefined; | ||
return ret; | ||
module.exports.__wbg_set_7b70226104a82921 = function(arg0, arg1, arg2) { | ||
getObject(arg0).set(getObject(arg1), arg2 >>> 0); | ||
}; | ||
module.exports.__wbg_call_3bfa248576352471 = function() { return handleError(function (arg0, arg1, arg2) { | ||
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2)); | ||
module.exports.__wbg_subarray_b4e9772c34a7f5ba = function(arg0, arg1, arg2) { | ||
const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0); | ||
return addHeapObject(ret); | ||
}, arguments) }; | ||
}; | ||
module.exports.__wbg_buffer_ccaed51a635d8a2d = function(arg0) { | ||
const ret = getObject(arg0).buffer; | ||
module.exports.__wbg_versions_c71aa1626a93e0a1 = function(arg0) { | ||
const ret = getObject(arg0).versions; | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbg_newwithbyteoffsetandlength_7e3eb787208af730 = function(arg0, arg1, arg2) { | ||
const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0); | ||
module.exports.__wbg_window_1a23defd102c72f4 = function() { return handleError(function () { | ||
const ret = window.window; | ||
return addHeapObject(ret); | ||
}, arguments) }; | ||
module.exports.__wbindgen_is_function = function(arg0) { | ||
const ret = typeof(getObject(arg0)) === 'function'; | ||
return ret; | ||
}; | ||
module.exports.__wbg_new_fec2611eb9180f95 = function(arg0) { | ||
const ret = new Uint8Array(getObject(arg0)); | ||
return addHeapObject(ret); | ||
module.exports.__wbindgen_is_object = function(arg0) { | ||
const val = getObject(arg0); | ||
const ret = typeof(val) === 'object' && val !== null; | ||
return ret; | ||
}; | ||
module.exports.__wbg_set_ec2fcf81bc573fd9 = function(arg0, arg1, arg2) { | ||
getObject(arg0).set(getObject(arg1), arg2 >>> 0); | ||
module.exports.__wbindgen_is_string = function(arg0) { | ||
const ret = typeof(getObject(arg0)) === 'string'; | ||
return ret; | ||
}; | ||
module.exports.__wbg_length_9254c4bd3b9f23c4 = function(arg0) { | ||
const ret = getObject(arg0).length; | ||
module.exports.__wbindgen_is_undefined = function(arg0) { | ||
const ret = getObject(arg0) === undefined; | ||
return ret; | ||
}; | ||
module.exports.__wbg_newwithlength_76462a666eca145f = function(arg0) { | ||
const ret = new Uint8Array(arg0 >>> 0); | ||
module.exports.__wbindgen_memory = function() { | ||
const ret = wasm.memory; | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbg_subarray_975a06f9dbd16995 = function(arg0, arg1, arg2) { | ||
const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0); | ||
module.exports.__wbindgen_object_clone_ref = function(arg0) { | ||
const ret = getObject(arg0); | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbindgen_throw = function(arg0, arg1) { | ||
throw new Error(getStringFromWasm0(arg0, arg1)); | ||
module.exports.__wbindgen_object_drop_ref = function(arg0) { | ||
takeObject(arg0); | ||
}; | ||
module.exports.__wbindgen_memory = function() { | ||
const ret = wasm.memory; | ||
module.exports.__wbindgen_string_new = function(arg0, arg1) { | ||
const ret = getStringFromWasm0(arg0, arg1); | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbindgen_throw = function(arg0, arg1) { | ||
throw new Error(getStringFromWasm0(arg0, arg1)); | ||
}; | ||
const path = require('path').join(__dirname, 'bindings_wasm_bg.wasm'); | ||
@@ -375,0 +375,0 @@ const bytes = require('fs').readFileSync(path); |
{ | ||
"name": "@rollup/wasm-node", | ||
"version": "4.28.0", | ||
"version": "4.28.1", | ||
"description": "Next-generation ES module bundler with Node wasm", | ||
@@ -37,10 +37,10 @@ "main": "dist/rollup.js", | ||
"@codemirror/lang-javascript": "^6.2.2", | ||
"@codemirror/language": "^6.10.4", | ||
"@codemirror/language": "^6.10.6", | ||
"@codemirror/search": "^6.5.8", | ||
"@codemirror/state": "^6.4.1", | ||
"@codemirror/view": "^6.35.0", | ||
"@eslint/js": "^9.15.0", | ||
"@eslint/js": "^9.16.0", | ||
"@inquirer/prompts": "^7.1.0", | ||
"@jridgewell/sourcemap-codec": "^1.5.0", | ||
"@mermaid-js/mermaid-cli": "^11.4.0", | ||
"@mermaid-js/mermaid-cli": "^11.4.2", | ||
"@napi-rs/cli": "^2.18.4", | ||
@@ -56,5 +56,5 @@ "@rollup/plugin-alias": "^5.1.1", | ||
"@rollup/pluginutils": "^5.1.3", | ||
"@shikijs/vitepress-twoslash": "^1.23.1", | ||
"@shikijs/vitepress-twoslash": "^1.24.0", | ||
"@types/mocha": "^10.0.10", | ||
"@types/node": "^18.19.66", | ||
"@types/node": "^18.19.67", | ||
"@types/semver": "^7.5.8", | ||
@@ -76,7 +76,7 @@ "@types/yargs-parser": "^21.0.3", | ||
"es6-shim": "^0.35.8", | ||
"eslint": "^9.15.0", | ||
"eslint": "^9.16.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"eslint-plugin-unicorn": "^56.0.1", | ||
"eslint-plugin-vue": "^9.31.0", | ||
"eslint-plugin-vue": "^9.32.0", | ||
"fixturify": "^3.0.0", | ||
@@ -86,3 +86,3 @@ "flru": "^1.0.2", | ||
"github-api": "^3.4.0", | ||
"globals": "^15.12.0", | ||
"globals": "^15.13.0", | ||
"husky": "^9.1.7", | ||
@@ -93,7 +93,7 @@ "is-reference": "^3.0.3", | ||
"magic-string": "^0.30.14", | ||
"mocha": "^10.8.2", | ||
"mocha": "^11.0.1", | ||
"nodemon": "^3.1.7", | ||
"npm-audit-resolver": "^3.0.0-RC.0", | ||
"nyc": "^17.1.0", | ||
"pinia": "^2.2.6", | ||
"pinia": "^2.2.8", | ||
"prettier": "^3.4.1", | ||
@@ -104,3 +104,3 @@ "prettier-plugin-organize-imports": "^4.1.0", | ||
"requirejs": "^2.3.7", | ||
"rollup": "^4.27.4", | ||
"rollup": "^4.28.0", | ||
"rollup-plugin-license": "^3.5.3", | ||
@@ -117,4 +117,4 @@ "rollup-plugin-string": "^3.0.0", | ||
"typescript": "^5.7.2", | ||
"typescript-eslint": "^8.16.0", | ||
"vite": "^5.4.11", | ||
"typescript-eslint": "^8.17.0", | ||
"vite": "^6.0.2", | ||
"vitepress": "^1.5.0", | ||
@@ -129,7 +129,6 @@ "vue": "^3.5.13", | ||
"semver": "^7.6.3", | ||
"ws": "^8.18.0" | ||
"readable-stream": "npm:@built-in/readable-stream@1" | ||
}, | ||
"comments": { | ||
"vue-tsc": "This is necessary so that prettier-plugin-organize-imports works correctly in Vue templatges", | ||
"ws": "mermaid requires an older 8.13.0 version via puppeteer with vulnerabilities" | ||
"vue-tsc": "This is necessary so that prettier-plugin-organize-imports works correctly in Vue templatges" | ||
}, | ||
@@ -136,0 +135,0 @@ "files": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
65486
4100088