New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@rollup/wasm-node

Package Overview
Dependencies
Maintainers
4
Versions
115
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.31.0 to 4.32.0

4

dist/es/getLogFilter.js
/*
@license
Rollup.js v4.31.0
Sun, 19 Jan 2025 12:56:16 GMT - commit 15c264d59e0768b7d283a7bb8ded0519d1b5199e
Rollup.js v4.32.0
Fri, 24 Jan 2025 08:27:05 GMT - commit 2538304efdc05ecb7c52e6376d5777565139f075

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

/*
@license
Rollup.js v4.31.0
Sun, 19 Jan 2025 12:56:16 GMT - commit 15c264d59e0768b7d283a7bb8ded0519d1b5199e
Rollup.js v4.32.0
Fri, 24 Jan 2025 08:27:05 GMT - commit 2538304efdc05ecb7c52e6376d5777565139f075

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

/*
@license
Rollup.js v4.31.0
Sun, 19 Jan 2025 12:56:16 GMT - commit 15c264d59e0768b7d283a7bb8ded0519d1b5199e
Rollup.js v4.32.0
Fri, 24 Jan 2025 08:27:05 GMT - commit 2538304efdc05ecb7c52e6376d5777565139f075

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

/*
@license
Rollup.js v4.31.0
Sun, 19 Jan 2025 12:56:16 GMT - commit 15c264d59e0768b7d283a7bb8ded0519d1b5199e
Rollup.js v4.32.0
Fri, 24 Jan 2025 08:27:05 GMT - commit 2538304efdc05ecb7c52e6376d5777565139f075

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

/*
@license
Rollup.js v4.31.0
Sun, 19 Jan 2025 12:56:16 GMT - commit 15c264d59e0768b7d283a7bb8ded0519d1b5199e
Rollup.js v4.32.0
Fri, 24 Jan 2025 08:27:05 GMT - commit 2538304efdc05ecb7c52e6376d5777565139f075

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

/*
@license
Rollup.js v4.31.0
Sun, 19 Jan 2025 12:56:16 GMT - commit 15c264d59e0768b7d283a7bb8ded0519d1b5199e
Rollup.js v4.32.0
Fri, 24 Jan 2025 08:27:05 GMT - commit 2538304efdc05ecb7c52e6376d5777565139f075

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

@@ -972,2 +972,3 @@ import type * as estree from 'estree';

skipWrite?: boolean;
onInvalidate?: (id: string) => void;
}

@@ -974,0 +975,0 @@

/*
@license
Rollup.js v4.31.0
Sun, 19 Jan 2025 12:56:16 GMT - commit 15c264d59e0768b7d283a7bb8ded0519d1b5199e
Rollup.js v4.32.0
Fri, 24 Jan 2025 08:27:05 GMT - commit 2538304efdc05ecb7c52e6376d5777565139f075

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

/*
@license
Rollup.js v4.31.0
Sun, 19 Jan 2025 12:56:16 GMT - commit 15c264d59e0768b7d283a7bb8ded0519d1b5199e
Rollup.js v4.32.0
Fri, 24 Jan 2025 08:27:05 GMT - commit 2538304efdc05ecb7c52e6376d5777565139f075

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

/*
@license
Rollup.js v4.31.0
Sun, 19 Jan 2025 12:56:16 GMT - commit 15c264d59e0768b7d283a7bb8ded0519d1b5199e
Rollup.js v4.32.0
Fri, 24 Jan 2025 08:27:05 GMT - commit 2538304efdc05ecb7c52e6376d5777565139f075

@@ -207,3 +207,3 @@ https://github.com/rollup/rollup

if (log.url) {
info(parseAst_js.getRollupUrl(log.url));
info(log.url);
}

@@ -210,0 +210,0 @@ const loc = formatLocation(log);

/*
@license
Rollup.js v4.31.0
Sun, 19 Jan 2025 12:56:16 GMT - commit 15c264d59e0768b7d283a7bb8ded0519d1b5199e
Rollup.js v4.32.0
Fri, 24 Jan 2025 08:27:05 GMT - commit 2538304efdc05ecb7c52e6376d5777565139f075

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

/*
@license
Rollup.js v4.31.0
Sun, 19 Jan 2025 12:56:16 GMT - commit 15c264d59e0768b7d283a7bb8ded0519d1b5199e
Rollup.js v4.32.0
Fri, 24 Jan 2025 08:27:05 GMT - commit 2538304efdc05ecb7c52e6376d5777565139f075

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

});
const watchOptions = this.options.watch || {};
this.filter = rollup.createFilter(watchOptions.include, watchOptions.exclude);
this.watchOptions = this.options.watch || {};
this.filter = rollup.createFilter(this.watchOptions.include, this.watchOptions.exclude);
this.fileWatcher = new FileWatcher(this, {
...watchOptions.chokidar,
...this.watchOptions.chokidar,
disableGlobbing: true,

@@ -235,2 +235,3 @@ ignoreInitial: true

this.watcher.invalidate({ event: details.event, id });
this.watchOptions.onInvalidate?.(id);
}

@@ -237,0 +238,0 @@ async run() {

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

@@ -55,5 +55,5 @@ "main": "dist/rollup.js",

"@rollup/pluginutils": "^5.1.4",
"@shikijs/vitepress-twoslash": "^1.26.2",
"@shikijs/vitepress-twoslash": "^2.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.70",
"@types/node": "^18.19.71",
"@types/semver": "^7.5.8",

@@ -76,3 +76,3 @@ "@types/yargs-parser": "^21.0.3",

"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unicorn": "^56.0.1",

@@ -82,3 +82,3 @@ "eslint-plugin-vue": "^9.32.0",

"flru": "^1.0.2",
"fs-extra": "^11.2.0",
"fs-extra": "^11.3.0",
"github-api": "^3.4.0",

@@ -88,6 +88,6 @@ "globals": "^15.14.0",

"is-reference": "^3.0.3",
"lint-staged": "^15.3.0",
"lint-staged": "^15.4.1",
"locate-character": "^3.0.0",
"magic-string": "^0.30.17",
"mocha": "^11.0.1",
"mocha": "^11.1.0",
"nodemon": "^3.1.9",

@@ -97,3 +97,3 @@ "npm-audit-resolver": "^3.0.0-RC.0",

"picocolors": "^1.1.1",
"pinia": "^2.3.0",
"pinia": "^2.3.1",
"prettier": "^3.4.2",

@@ -104,3 +104,3 @@ "prettier-plugin-organize-imports": "^4.1.0",

"requirejs": "^2.3.7",
"rollup": "^4.30.1",
"rollup": "^4.31.0",
"rollup-plugin-license": "^3.5.3",

@@ -117,5 +117,5 @@ "rollup-plugin-string": "^3.0.0",

"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.7",
"vitepress": "^1.5.0",
"typescript-eslint": "^8.21.0",
"vite": "^6.0.10",
"vitepress": "^1.6.1",
"vue": "^3.5.13",

@@ -122,0 +122,0 @@ "vue-tsc": "^2.2.0",

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