Socket
Socket
Sign inDemoInstall

rollup

Package Overview
Dependencies
14
Maintainers
5
Versions
799
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.6.1 to 4.7.0

4

dist/es/getLogFilter.js
/*
@license
Rollup.js v4.6.1
Thu, 30 Nov 2023 05:22:35 GMT - commit ded37aa8f95d5ba9786fa8903ef3424fd0549c73
Rollup.js v4.7.0
Fri, 08 Dec 2023 07:57:30 GMT - commit 098e29ca3e0643006870f9ed94710fd3004a9043

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

/*
@license
Rollup.js v4.6.1
Thu, 30 Nov 2023 05:22:35 GMT - commit ded37aa8f95d5ba9786fa8903ef3424fd0549c73
Rollup.js v4.7.0
Fri, 08 Dec 2023 07:57:30 GMT - commit 098e29ca3e0643006870f9ed94710fd3004a9043

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

/*
@license
Rollup.js v4.6.1
Thu, 30 Nov 2023 05:22:35 GMT - commit ded37aa8f95d5ba9786fa8903ef3424fd0549c73
Rollup.js v4.7.0
Fri, 08 Dec 2023 07:57:30 GMT - commit 098e29ca3e0643006870f9ed94710fd3004a9043

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

/*
@license
Rollup.js v4.6.1
Thu, 30 Nov 2023 05:22:35 GMT - commit ded37aa8f95d5ba9786fa8903ef3424fd0549c73
Rollup.js v4.7.0
Fri, 08 Dec 2023 07:57:30 GMT - commit 098e29ca3e0643006870f9ed94710fd3004a9043

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

/*
@license
Rollup.js v4.6.1
Thu, 30 Nov 2023 05:22:35 GMT - commit ded37aa8f95d5ba9786fa8903ef3424fd0549c73
Rollup.js v4.7.0
Fri, 08 Dec 2023 07:57:30 GMT - commit 098e29ca3e0643006870f9ed94710fd3004a9043

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

@@ -19,2 +19,3 @@ const { existsSync } = require('node:fs');

arm64: { base: 'linux-arm64-gnu', musl: 'linux-arm64-musl' },
riscv64: { base: 'linux-riscv64-gnu', musl: null },
x64: { base: 'linux-x64-gnu', musl: 'linux-x64-musl' }

@@ -29,2 +30,8 @@ },

const msvcLinkFilenameByArch = {
arm64: 'vc_redist.arm64.exe',
ia32: 'vc_redist.x86.exe',
x64: 'vc_redist.x64.exe'
};
const packageBase = getPackageBase();

@@ -66,2 +73,18 @@

} catch (error) {
if (
platform === 'win32' &&
error instanceof Error &&
error.code === 'ERR_DLOPEN_FAILED' &&
error.message.includes('The specified module could not be found')
) {
const msvcDownloadLink = `https://aka.ms/vs/17/release/${msvcLinkFilenameByArch[arch]}`;
throw new Error(
`Failed to load module ${id}. ` +
'Required DLL was not found. ' +
'This error usually happens when Microsoft Visual C++ Redistributable is not installed. ' +
`You can download it from ${msvcDownloadLink}`,
{ cause: error }
);
}
throw new Error(

@@ -68,0 +91,0 @@ `Cannot find module ${id}. ` +

/*
@license
Rollup.js v4.6.1
Thu, 30 Nov 2023 05:22:35 GMT - commit ded37aa8f95d5ba9786fa8903ef3424fd0549c73
Rollup.js v4.7.0
Fri, 08 Dec 2023 07:57:30 GMT - commit 098e29ca3e0643006870f9ed94710fd3004a9043

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

/*
@license
Rollup.js v4.6.1
Thu, 30 Nov 2023 05:22:35 GMT - commit ded37aa8f95d5ba9786fa8903ef3424fd0549c73
Rollup.js v4.7.0
Fri, 08 Dec 2023 07:57:30 GMT - commit 098e29ca3e0643006870f9ed94710fd3004a9043

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

/*
@license
Rollup.js v4.6.1
Thu, 30 Nov 2023 05:22:35 GMT - commit ded37aa8f95d5ba9786fa8903ef3424fd0549c73
Rollup.js v4.7.0
Fri, 08 Dec 2023 07:57:30 GMT - commit 098e29ca3e0643006870f9ed94710fd3004a9043

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

/*
@license
Rollup.js v4.6.1
Thu, 30 Nov 2023 05:22:35 GMT - commit ded37aa8f95d5ba9786fa8903ef3424fd0549c73
Rollup.js v4.7.0
Fri, 08 Dec 2023 07:57:30 GMT - commit 098e29ca3e0643006870f9ed94710fd3004a9043

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

/*
@license
Rollup.js v4.6.1
Thu, 30 Nov 2023 05:22:35 GMT - commit ded37aa8f95d5ba9786fa8903ef3424fd0549c73
Rollup.js v4.7.0
Fri, 08 Dec 2023 07:57:30 GMT - commit 098e29ca3e0643006870f9ed94710fd3004a9043

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

/*
@license
Rollup.js v4.6.1
Thu, 30 Nov 2023 05:22:35 GMT - commit ded37aa8f95d5ba9786fa8903ef3424fd0549c73
Rollup.js v4.7.0
Fri, 08 Dec 2023 07:57:30 GMT - commit 098e29ca3e0643006870f9ed94710fd3004a9043

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

/*
@license
Rollup.js v4.6.1
Thu, 30 Nov 2023 05:22:35 GMT - commit ded37aa8f95d5ba9786fa8903ef3424fd0549c73
Rollup.js v4.7.0
Fri, 08 Dec 2023 07:57:30 GMT - commit 098e29ca3e0643006870f9ed94710fd3004a9043

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

@@ -53,2 +53,24 @@ # Rollup core license

> The MIT License (MIT)
>
> Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
>
> Permission is hereby granted, free of charge, to any person obtaining a copy
> of this software and associated documentation files (the "Software"), to deal
> in the Software without restriction, including without limitation the rights
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
> copies of the Software, and to permit persons to whom the Software is
> furnished to do so, subject to the following conditions:
>
> The above copyright notice and this permission notice shall be included in
> all copies or substantial portions of the Software.
>
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
> THE SOFTWARE.
---------------------------------------

@@ -55,0 +77,0 @@

{
"name": "rollup",
"version": "4.6.1",
"version": "4.7.0",
"description": "Next-generation ES module bundler",

@@ -27,2 +27,3 @@ "main": "dist/rollup.js",

"i686-pc-windows-msvc",
"riscv64gc-unknown-linux-gnu",
"x86_64-apple-darwin",

@@ -104,14 +105,15 @@ "x86_64-pc-windows-msvc",

"fsevents": "~2.3.2",
"@rollup/rollup-darwin-arm64": "4.6.1",
"@rollup/rollup-android-arm64": "4.6.1",
"@rollup/rollup-win32-arm64-msvc": "4.6.1",
"@rollup/rollup-linux-arm64-gnu": "4.6.1",
"@rollup/rollup-linux-arm64-musl": "4.6.1",
"@rollup/rollup-android-arm-eabi": "4.6.1",
"@rollup/rollup-linux-arm-gnueabihf": "4.6.1",
"@rollup/rollup-win32-ia32-msvc": "4.6.1",
"@rollup/rollup-darwin-x64": "4.6.1",
"@rollup/rollup-win32-x64-msvc": "4.6.1",
"@rollup/rollup-linux-x64-gnu": "4.6.1",
"@rollup/rollup-linux-x64-musl": "4.6.1"
"@rollup/rollup-darwin-arm64": "4.7.0",
"@rollup/rollup-android-arm64": "4.7.0",
"@rollup/rollup-win32-arm64-msvc": "4.7.0",
"@rollup/rollup-linux-arm64-gnu": "4.7.0",
"@rollup/rollup-linux-arm64-musl": "4.7.0",
"@rollup/rollup-android-arm-eabi": "4.7.0",
"@rollup/rollup-linux-arm-gnueabihf": "4.7.0",
"@rollup/rollup-win32-ia32-msvc": "4.7.0",
"@rollup/rollup-linux-riscv64-gnu": "4.7.0",
"@rollup/rollup-darwin-x64": "4.7.0",
"@rollup/rollup-win32-x64-msvc": "4.7.0",
"@rollup/rollup-linux-x64-gnu": "4.7.0",
"@rollup/rollup-linux-x64-musl": "4.7.0"
},

@@ -122,12 +124,12 @@ "devDependenciesComments": {

"devDependencies": {
"@codemirror/commands": "^6.3.0",
"@codemirror/commands": "^6.3.2",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/language": "^6.9.2",
"@codemirror/search": "^6.5.4",
"@codemirror/state": "^6.3.1",
"@codemirror/view": "^6.22.0",
"@codemirror/language": "^6.9.3",
"@codemirror/search": "^6.5.5",
"@codemirror/state": "^6.3.2",
"@codemirror/view": "^6.22.1",
"@jridgewell/sourcemap-codec": "^1.4.15",
"@mermaid-js/mermaid-cli": "^10.6.1",
"@napi-rs/cli": "^2.16.5",
"@rollup/plugin-alias": "^5.0.1",
"@napi-rs/cli": "^2.17.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-buble": "^1.0.3",

@@ -140,9 +142,9 @@ "@rollup/plugin-commonjs": "^25.0.7",

"@rollup/plugin-typescript": "11.1.5",
"@rollup/pluginutils": "^5.0.5",
"@rollup/pluginutils": "^5.1.0",
"@types/estree": "1.0.5",
"@types/mocha": "^10.0.5",
"@types/mocha": "^10.0.6",
"@types/node": "18.0.0",
"@types/yargs-parser": "^21.0.3",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vue/eslint-config-prettier": "^8.0.0",

@@ -161,11 +163,11 @@ "@vue/eslint-config-typescript": "^12.0.0",

"es6-shim": "^0.35.8",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unicorn": "^49.0.0",
"eslint-plugin-vue": "^9.18.1",
"eslint-plugin-vue": "^9.19.2",
"fixturify": "^3.0.0",
"flru": "^1.0.2",
"fs-extra": "^11.1.1",
"fs-extra": "^11.2.0",
"github-api": "^3.4.0",

@@ -175,3 +177,3 @@ "husky": "^8.0.3",

"is-reference": "^3.0.2",
"lint-staged": "^15.1.0",
"lint-staged": "^15.2.0",
"locate-character": "^3.0.0",

@@ -186,3 +188,3 @@ "magic-string": "^0.30.5",

"requirejs": "^2.3.6",
"rollup": "^4.5.0",
"rollup": "^4.6.1",
"rollup-plugin-license": "^3.2.0",

@@ -197,8 +199,8 @@ "rollup-plugin-string": "^3.0.0",

"systemjs": "^6.14.2",
"terser": "^5.24.0",
"terser": "^5.25.0",
"tslib": "^2.6.2",
"typescript": "^5.3.2",
"vite": "^5.0.0",
"vitepress": "^1.0.0-rc.29",
"vue": "^3.3.8",
"vite": "^5.0.5",
"vitepress": "^1.0.0-rc.31",
"vue": "^3.3.10",
"wasm-pack": "^0.12.1",

@@ -205,0 +207,0 @@ "weak-napi": "^2.0.2",

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

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc