Socket
Socket
Sign inDemoInstall

@rollup/wasm-node

Package Overview
Dependencies
Maintainers
4
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rollup/wasm-node - npm Package Compare versions

Comparing version 4.9.6 to 4.10.0

4

dist/es/getLogFilter.js
/*
@license
Rollup.js v4.9.6
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
Rollup.js v4.10.0
Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.9.6
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
Rollup.js v4.10.0
Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.9.6
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
Rollup.js v4.10.0
Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.9.6
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
Rollup.js v4.10.0
Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.9.6
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
Rollup.js v4.10.0
Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

@@ -1,2 +0,7 @@

const { parse, xxhashBase64Url } = require('./wasm-node/bindings_wasm.js');
const {
parse,
xxhashBase64Url,
xxhashBase36,
xxhashBase16
} = require('./wasm-node/bindings_wasm.js');

@@ -7,1 +12,3 @@ exports.parse = parse;

exports.xxhashBase64Url = xxhashBase64Url;
exports.xxhashBase36 = xxhashBase36;
exports.xxhashBase16 = xxhashBase16;
/*
@license
Rollup.js v4.9.6
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
Rollup.js v4.10.0
Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

@@ -686,2 +686,4 @@ import type { Program } from 'estree';

type HashCharacters = 'base64' | 'base36' | 'hex';
export interface OutputOptions {

@@ -712,2 +714,3 @@ amd?: AmdOptions;

globals?: GlobalsOption;
hashCharacters?: HashCharacters;
hoistTransitiveImports?: boolean;

@@ -763,2 +766,3 @@ indent?: string | boolean;

globals: GlobalsOption;
hashCharacters: HashCharacters;
hoistTransitiveImports: boolean;

@@ -765,0 +769,0 @@ indent: true | string;

/*
@license
Rollup.js v4.9.6
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
Rollup.js v4.10.0
Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.9.6
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
Rollup.js v4.10.0
Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.9.6
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
Rollup.js v4.10.0
Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.9.6
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
Rollup.js v4.10.0
Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.9.6
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
Rollup.js v4.10.0
Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

@@ -102,2 +102,3 @@ let imports = {};

offset += ret.written;
ptr = realloc(ptr, len, offset, 1) >>> 0;
}

@@ -164,2 +165,44 @@

/**
* @param {Uint8Array} input
* @returns {string}
*/
module.exports.xxhashBase36 = function(input) {
let deferred1_0;
let deferred1_1;
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.xxhashBase36(retptr, addHeapObject(input));
var r0 = getInt32Memory0()[retptr / 4 + 0];
var r1 = getInt32Memory0()[retptr / 4 + 1];
deferred1_0 = r0;
deferred1_1 = r1;
return getStringFromWasm0(r0, r1);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
}
};
/**
* @param {Uint8Array} input
* @returns {string}
*/
module.exports.xxhashBase16 = function(input) {
let deferred1_0;
let deferred1_1;
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.xxhashBase16(retptr, addHeapObject(input));
var r0 = getInt32Memory0()[retptr / 4 + 0];
var r1 = getInt32Memory0()[retptr / 4 + 1];
deferred1_0 = r0;
deferred1_1 = r1;
return getStringFromWasm0(r0, r1);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
}
};
function handleError(f, args) {

@@ -236,3 +279,3 @@ try {

module.exports.__wbg_newnoargs_5859b6d41c6fe9f7 = function(arg0, arg1) {
module.exports.__wbg_newnoargs_cfecb3965268594c = function(arg0, arg1) {
const ret = new Function(getStringFromWasm0(arg0, arg1));

@@ -242,3 +285,3 @@ return addHeapObject(ret);

module.exports.__wbg_call_a79f1973a4f07d5e = function() { return handleError(function (arg0, arg1) {
module.exports.__wbg_call_3f093dd26d5569f8 = function() { return handleError(function (arg0, arg1) {
const ret = getObject(arg0).call(getObject(arg1));

@@ -253,3 +296,3 @@ return addHeapObject(ret);

module.exports.__wbg_self_086b5302bcafb962 = function() { return handleError(function () {
module.exports.__wbg_self_05040bd9523805b9 = function() { return handleError(function () {
const ret = self.self;

@@ -259,3 +302,3 @@ return addHeapObject(ret);

module.exports.__wbg_window_132fa5d7546f1de5 = function() { return handleError(function () {
module.exports.__wbg_window_adc720039f2cb14f = function() { return handleError(function () {
const ret = window.window;

@@ -265,3 +308,3 @@ return addHeapObject(ret);

module.exports.__wbg_globalThis_e5f801a37ad7d07b = function() { return handleError(function () {
module.exports.__wbg_globalThis_622105db80c1457d = function() { return handleError(function () {
const ret = globalThis.globalThis;

@@ -271,3 +314,3 @@ return addHeapObject(ret);

module.exports.__wbg_global_f9a61fce4af6b7c1 = function() { return handleError(function () {
module.exports.__wbg_global_f56b013ed9bcf359 = function() { return handleError(function () {
const ret = global.global;

@@ -282,3 +325,3 @@ return addHeapObject(ret);

module.exports.__wbg_call_f6a2bc58c19c53c6 = function() { return handleError(function (arg0, arg1, arg2) {
module.exports.__wbg_call_67f2111acd2dfdb6 = function() { return handleError(function (arg0, arg1, arg2) {
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));

@@ -288,3 +331,3 @@ return addHeapObject(ret);

module.exports.__wbg_buffer_5d1b598a01b41a42 = function(arg0) {
module.exports.__wbg_buffer_b914fb8b50ebbc3e = function(arg0) {
const ret = getObject(arg0).buffer;

@@ -294,3 +337,3 @@ return addHeapObject(ret);

module.exports.__wbg_newwithbyteoffsetandlength_d695c7957788f922 = function(arg0, arg1, arg2) {
module.exports.__wbg_newwithbyteoffsetandlength_0de9ee56e9f6ee6e = function(arg0, arg1, arg2) {
const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);

@@ -300,3 +343,3 @@ return addHeapObject(ret);

module.exports.__wbg_new_ace717933ad7117f = function(arg0) {
module.exports.__wbg_new_b1f2d6842d615181 = function(arg0) {
const ret = new Uint8Array(getObject(arg0));

@@ -306,7 +349,7 @@ return addHeapObject(ret);

module.exports.__wbg_set_74906aa30864df5a = function(arg0, arg1, arg2) {
module.exports.__wbg_set_7d988c98e6ced92d = function(arg0, arg1, arg2) {
getObject(arg0).set(getObject(arg1), arg2 >>> 0);
};
module.exports.__wbg_length_f0764416ba5bb237 = function(arg0) {
module.exports.__wbg_length_21c4b0ae73cba59d = function(arg0) {
const ret = getObject(arg0).length;

@@ -316,3 +359,3 @@ return ret;

module.exports.__wbg_newwithlength_728575f3bba9959b = function(arg0) {
module.exports.__wbg_newwithlength_0d03cef43b68a530 = function(arg0) {
const ret = new Uint8Array(arg0 >>> 0);

@@ -322,3 +365,3 @@ return addHeapObject(ret);

module.exports.__wbg_subarray_7f7a652672800851 = function(arg0, arg1, arg2) {
module.exports.__wbg_subarray_adc418253d76e2f1 = function(arg0, arg1, arg2) {
const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0);

@@ -325,0 +368,0 @@ return addHeapObject(ret);

{
"name": "@rollup/wasm-node",
"version": "4.9.6",
"version": "4.10.0",
"description": "Next-generation ES module bundler with Node wasm",

@@ -32,3 +32,4 @@ "main": "dist/rollup.js",

"devDependenciesComments": {
"@rollup/plugin-typescript": "It appears that 11.1.3 breaks sourcemaps"
"@types/node": "Version 18.19.0 breaks chokidar and vite types",
"vitepress": "Version 1.0.0-rc.40 breaks npm run dev"
},

@@ -38,9 +39,9 @@ "devDependencies": {

"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/language": "^6.10.0",
"@codemirror/language": "^6.10.1",
"@codemirror/search": "^6.5.5",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.23.0",
"@codemirror/view": "^6.23.1",
"@jridgewell/sourcemap-codec": "^1.4.15",
"@mermaid-js/mermaid-cli": "^10.6.1",
"@napi-rs/cli": "^2.17.0",
"@mermaid-js/mermaid-cli": "^10.7.0",
"@napi-rs/cli": "^2.18.0",
"@rollup/plugin-alias": "^5.1.0",

@@ -53,3 +54,3 @@ "@rollup/plugin-buble": "^1.0.3",

"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "11.1.5",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/pluginutils": "^5.1.0",

@@ -59,6 +60,6 @@ "@types/eslint": "^8.56.2",

"@types/mocha": "^10.0.6",
"@types/node": "^18.11.19",
"@types/node": "~18.18.14",
"@types/yargs-parser": "^21.0.3",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vue/eslint-config-prettier": "^9.0.0",

@@ -73,3 +74,3 @@ "@vue/eslint-config-typescript": "^12.0.0",

"concurrently": "^8.2.2",
"core-js": "^3.35.0",
"core-js": "^3.35.1",
"date-time": "^4.0.0",

@@ -83,3 +84,3 @@ "es5-shim": "^4.6.7",

"eslint-plugin-unicorn": "^50.0.1",
"eslint-plugin-vue": "^9.20.1",
"eslint-plugin-vue": "^9.21.1",
"fixturify": "^3.0.0",

@@ -89,19 +90,19 @@ "flru": "^1.0.2",

"github-api": "^3.4.0",
"husky": "^8.0.3",
"inquirer": "^9.2.12",
"husky": "^9.0.10",
"inquirer": "^9.2.14",
"is-reference": "^3.0.2",
"lint-staged": "^15.2.0",
"lint-staged": "^15.2.2",
"locate-character": "^3.0.0",
"magic-string": "^0.30.5",
"magic-string": "^0.30.7",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"pinia": "^2.1.7",
"prettier": "^3.2.2",
"prettier": "^3.2.5",
"pretty-bytes": "^6.1.1",
"pretty-ms": "^8.0.0",
"pretty-ms": "^9.0.0",
"requirejs": "^2.3.6",
"rollup": "^4.9.5",
"rollup": "^4.9.6",
"rollup-plugin-license": "^3.2.0",
"rollup-plugin-string": "^3.0.0",
"semver": "^7.5.4",
"semver": "^7.6.0",
"shx": "^0.3.4",

@@ -112,8 +113,8 @@ "signal-exit": "^4.1.0",

"systemjs": "^6.14.3",
"terser": "^5.26.0",
"terser": "^5.27.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vitepress": "^1.0.0-rc.39",
"vue": "^3.4.14",
"vite": "^5.0.12",
"vitepress": "1.0.0-rc.39",
"vue": "^3.4.15",
"wasm-pack": "^0.12.1",

@@ -124,4 +125,4 @@ "weak-napi": "^2.0.2",

"overrides": {
"axios": "^1.6.5",
"semver": "^7.5.4"
"axios": "^1.6.7",
"semver": "^7.6.0"
},

@@ -128,0 +129,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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc