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.0.0-13 to 4.0.0-14

4

dist/es/getLogFilter.js
/*
@license
Rollup.js v4.0.0-13
Thu, 24 Aug 2023 15:47:48 GMT - commit 07d3baeb218f6d1084e9d1b17a429ca84cb92561
Rollup.js v4.0.0-14
Fri, 15 Sep 2023 12:33:30 GMT - commit ec2f8ec863d8d896aef0dd0097f2d73f59e8213a

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

/*
@license
Rollup.js v4.0.0-13
Thu, 24 Aug 2023 15:47:48 GMT - commit 07d3baeb218f6d1084e9d1b17a429ca84cb92561
Rollup.js v4.0.0-14
Fri, 15 Sep 2023 12:33:30 GMT - commit ec2f8ec863d8d896aef0dd0097f2d73f59e8213a

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

/*
@license
Rollup.js v4.0.0-13
Thu, 24 Aug 2023 15:47:48 GMT - commit 07d3baeb218f6d1084e9d1b17a429ca84cb92561
Rollup.js v4.0.0-14
Fri, 15 Sep 2023 12:33:30 GMT - commit ec2f8ec863d8d896aef0dd0097f2d73f59e8213a

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

/*
@license
Rollup.js v4.0.0-13
Thu, 24 Aug 2023 15:47:48 GMT - commit 07d3baeb218f6d1084e9d1b17a429ca84cb92561
Rollup.js v4.0.0-14
Fri, 15 Sep 2023 12:33:30 GMT - commit ec2f8ec863d8d896aef0dd0097f2d73f59e8213a

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

@@ -96,3 +96,3 @@ export const VERSION: string;

interface ModuleOptions {
assertions: Record<string, string>;
attributes: Record<string, string>;
meta: CustomPluginOptions;

@@ -168,2 +168,3 @@ moduleSideEffects: boolean | 'no-treeshake';

map?: SourceMap;
sourcemapFileName?: string;
type: 'prebuilt-chunk';

@@ -230,3 +231,3 @@ }

options?: {
assertions?: Record<string, string>;
attributes?: Record<string, string>;
custom?: CustomPluginOptions;

@@ -270,3 +271,3 @@ isEntry?: boolean;

importer: string | undefined,
options: { assertions: Record<string, string>; custom?: CustomPluginOptions; isEntry: boolean }
options: { attributes: Record<string, string>; custom?: CustomPluginOptions; isEntry: boolean }
) => ResolveIdResult;

@@ -331,3 +332,3 @@

importer: string,
options: { assertions: Record<string, string> }
options: { attributes: Record<string, string> }
) => ResolveIdResult;

@@ -377,3 +378,3 @@

// eslint-disable-next-line @typescript-eslint/ban-types
export type PluginImpl<O extends object = object> = (options?: O) => Plugin;
export type PluginImpl<O extends object = object, A = any> = (options?: O) => Plugin<A>;

@@ -506,5 +507,5 @@ export interface OutputBundle {

export interface Plugin extends OutputPlugin, Partial<PluginHooks> {
export interface Plugin<A = any> extends OutputPlugin, Partial<PluginHooks> {
// for inter-plugin communication
api?: any;
api?: A;
}

@@ -718,3 +719,5 @@

extend?: boolean;
/** @deprecated Use "externalImportAttributes" instead. */
externalImportAssertions?: boolean;
externalImportAttributes?: boolean;
externalLiveBindings?: boolean;

@@ -751,2 +754,3 @@ // only required for bundle.write

sourcemapFile?: string;
sourcemapFileNames?: string | ((chunkInfo: PreRenderedChunk) => string);
sourcemapIgnoreList?: boolean | SourcemapIgnoreListOption;

@@ -776,3 +780,5 @@ sourcemapPathTransform?: SourcemapPathTransformOption;

extend: boolean;
/** @deprecated Use "externalImportAttributes" instead. */
externalImportAssertions: boolean;
externalImportAttributes: boolean;
externalLiveBindings: boolean;

@@ -808,2 +814,3 @@ file: string | undefined;

sourcemapFile: string | undefined;
sourcemapFileNames: string | ((chunkInfo: PreRenderedChunk) => string) | undefined;
sourcemapIgnoreList: SourcemapIgnoreListOption;

@@ -872,2 +879,3 @@ sourcemapPathTransform: SourcemapPathTransformOption | undefined;

map: SourceMap | null;
sourcemapFileName: string | null;
preliminaryFileName: string;

@@ -874,0 +882,0 @@ }

/*
@license
Rollup.js v4.0.0-13
Thu, 24 Aug 2023 15:47:48 GMT - commit 07d3baeb218f6d1084e9d1b17a429ca84cb92561
Rollup.js v4.0.0-14
Fri, 15 Sep 2023 12:33:30 GMT - commit ec2f8ec863d8d896aef0dd0097f2d73f59e8213a

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

/*
@license
Rollup.js v4.0.0-13
Thu, 24 Aug 2023 15:47:48 GMT - commit 07d3baeb218f6d1084e9d1b17a429ca84cb92561
Rollup.js v4.0.0-14
Fri, 15 Sep 2023 12:33:30 GMT - commit ec2f8ec863d8d896aef0dd0097f2d73f59e8213a

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

/*
@license
Rollup.js v4.0.0-13
Thu, 24 Aug 2023 15:47:48 GMT - commit 07d3baeb218f6d1084e9d1b17a429ca84cb92561
Rollup.js v4.0.0-14
Fri, 15 Sep 2023 12:33:30 GMT - commit ec2f8ec863d8d896aef0dd0097f2d73f59e8213a

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

/*
@license
Rollup.js v4.0.0-13
Thu, 24 Aug 2023 15:47:48 GMT - commit 07d3baeb218f6d1084e9d1b17a429ca84cb92561
Rollup.js v4.0.0-14
Fri, 15 Sep 2023 12:33:30 GMT - commit ec2f8ec863d8d896aef0dd0097f2d73f59e8213a

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

/*
@license
Rollup.js v4.0.0-13
Thu, 24 Aug 2023 15:47:48 GMT - commit 07d3baeb218f6d1084e9d1b17a429ca84cb92561
Rollup.js v4.0.0-14
Fri, 15 Sep 2023 12:33:30 GMT - commit ec2f8ec863d8d896aef0dd0097f2d73f59e8213a

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

/*
@license
Rollup.js v4.0.0-13
Thu, 24 Aug 2023 15:47:48 GMT - commit 07d3baeb218f6d1084e9d1b17a429ca84cb92561
Rollup.js v4.0.0-14
Fri, 15 Sep 2023 12:33:30 GMT - commit ec2f8ec863d8d896aef0dd0097f2d73f59e8213a

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

@@ -12,16 +12,2 @@ let imports = {};

let heap_next = heap.length;
function dropObject(idx) {
if (idx < 132) return;
heap[idx] = heap_next;
heap_next = idx;
}
function takeObject(idx) {
const ret = getObject(idx);
dropObject(idx);
return ret;
}
let WASM_VECTOR_LEN = 0;

@@ -104,2 +90,16 @@

let heap_next = heap.length;
function dropObject(idx) {
if (idx < 132) return;
heap[idx] = heap_next;
heap_next = idx;
}
function takeObject(idx) {
const ret = getObject(idx);
dropObject(idx);
return ret;
}
let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });

@@ -252,12 +252,2 @@

module.exports.__wbindgen_boolean_get = function(arg0) {
const v = getObject(arg0);
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
return ret;
};
module.exports.__wbindgen_object_drop_ref = function(arg0) {
takeObject(arg0);
};
module.exports.__wbindgen_string_get = function(arg0, arg1) {

@@ -272,2 +262,6 @@ const obj = getObject(arg1);

module.exports.__wbindgen_object_drop_ref = function(arg0) {
takeObject(arg0);
};
module.exports.__wbindgen_string_new = function(arg0, arg1) {

@@ -283,2 +277,8 @@ const ret = getStringFromWasm0(arg0, arg1);

module.exports.__wbindgen_boolean_get = function(arg0) {
const v = getObject(arg0);
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
return ret;
};
module.exports.__wbindgen_is_object = function(arg0) {

@@ -362,2 +362,6 @@ const val = getObject(arg0);

module.exports.__wbg_randomFillSync_dc1e9a60c158336d = function() { return handleError(function (arg0, arg1) {
getObject(arg0).randomFillSync(takeObject(arg1));
}, arguments) };
module.exports.__wbg_getRandomValues_37fa2ca9e4e07fab = function() { return handleError(function (arg0, arg1) {

@@ -367,6 +371,2 @@ getObject(arg0).getRandomValues(getObject(arg1));

module.exports.__wbg_randomFillSync_dc1e9a60c158336d = function() { return handleError(function (arg0, arg1) {
getObject(arg0).randomFillSync(takeObject(arg1));
}, arguments) };
module.exports.__wbg_new_898a68150f225f2e = function() {

@@ -373,0 +373,0 @@ const ret = new Array();

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

@@ -28,11 +28,14 @@ "main": "dist/rollup.js",

},
"devDependenciesComments": {
"@rollup/plugin-typescript": "It appears that 11.1.3 breaks sourcemaps"
},
"devDependencies": {
"@codemirror/commands": "^6.2.4",
"@codemirror/lang-javascript": "^6.1.9",
"@codemirror/commands": "^6.2.5",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/language": "^6.9.0",
"@codemirror/search": "^6.5.1",
"@codemirror/search": "^6.5.2",
"@codemirror/state": "^6.2.1",
"@codemirror/view": "^6.16.0",
"@codemirror/view": "^6.17.1",
"@jridgewell/sourcemap-codec": "^1.4.15",
"@mermaid-js/mermaid-cli": "^10.3.1",
"@mermaid-js/mermaid-cli": "^10.4.0",
"@napi-rs/cli": "^2.16.2",

@@ -43,7 +46,7 @@ "@rollup/plugin-alias": "^5.0.0",

"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@rollup/pluginutils": "^5.0.3",
"@rollup/plugin-typescript": "11.1.2",
"@rollup/pluginutils": "^5.0.4",
"@types/estree": "1.0.1",

@@ -53,4 +56,4 @@ "@types/mocha": "^10.0.1",

"@types/yargs-parser": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vue/eslint-config-prettier": "^8.0.0",

@@ -64,3 +67,3 @@ "@vue/eslint-config-typescript": "^11.0.3",

"colorette": "^2.0.20",
"concurrently": "^8.2.0",
"concurrently": "^8.2.1",
"core-js": "^3.32.1",

@@ -70,3 +73,3 @@ "date-time": "^4.0.0",

"es6-shim": "^0.35.8",
"eslint": "^8.47.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",

@@ -85,9 +88,9 @@ "eslint-plugin-import": "^2.28.1",

"is-reference": "^3.0.1",
"lint-staged": "^14.0.0",
"lint-staged": "^14.0.1",
"locate-character": "^3.0.0",
"magic-string": "^0.30.2",
"magic-string": "^0.30.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"pinia": "^2.1.6",
"prettier": "^3.0.2",
"prettier": "^3.0.3",
"pretty-bytes": "^6.1.1",

@@ -97,3 +100,3 @@ "pretty-ms": "^8.0.0",

"rollup": "^3.28.1",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-license": "^3.1.0",
"rollup-plugin-string": "^3.0.0",

@@ -107,7 +110,7 @@ "rollup-plugin-thatworks": "^1.0.4",

"systemjs": "^6.14.2",
"terser": "^5.19.2",
"terser": "^5.19.4",
"tslib": "^2.6.2",
"typescript": "^5.1.6",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitepress": "^1.0.0-rc.4",
"vitepress": "^1.0.0-rc.10",
"vue": "^3.3.4",

@@ -123,2 +126,3 @@ "wasm-pack": "^0.12.1",

"dist/wasm-node/*.wasm",
"dist/*.node",
"dist/**/*.js",

@@ -125,0 +129,0 @@ "dist/*.d.ts",

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 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