Socket
Socket
Sign inDemoInstall

rollup

Package Overview
Dependencies
1
Maintainers
5
Versions
799
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.14.1 to 4.14.2

4

dist/es/getLogFilter.js
/*
@license
Rollup.js v4.14.1
Sun, 07 Apr 2024 07:35:08 GMT - commit 0b665c31833525c923c0fc20f43ebfca748c6670
Rollup.js v4.14.2
Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c

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

/*
@license
Rollup.js v4.14.1
Sun, 07 Apr 2024 07:35:08 GMT - commit 0b665c31833525c923c0fc20f43ebfca748c6670
Rollup.js v4.14.2
Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c

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

/*
@license
Rollup.js v4.14.1
Sun, 07 Apr 2024 07:35:08 GMT - commit 0b665c31833525c923c0fc20f43ebfca748c6670
Rollup.js v4.14.2
Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c

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

/*
@license
Rollup.js v4.14.1
Sun, 07 Apr 2024 07:35:08 GMT - commit 0b665c31833525c923c0fc20f43ebfca748c6670
Rollup.js v4.14.2
Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c

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

/*
@license
Rollup.js v4.14.1
Sun, 07 Apr 2024 07:35:08 GMT - commit 0b665c31833525c923c0fc20f43ebfca748c6670
Rollup.js v4.14.2
Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c

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

const { existsSync } = require('node:fs');
const { join } = require('node:path');
const path = require('node:path');
const { platform, arch, report } = require('node:process');

@@ -19,3 +19,3 @@

arm64: { base: 'linux-arm64-gnu', musl: 'linux-arm64-musl' },
ppc64le: { base: 'linux-powerpc64le-gnu', musl: null },
ppc64: { base: 'linux-powerpc64le-gnu', musl: null },
riscv64: { base: 'linux-riscv64-gnu', musl: null },

@@ -70,3 +70,3 @@ s390x: { base: 'linux-s390x-gnu', musl: null },

const { parse, parseAsync, xxhashBase64Url, xxhashBase36, xxhashBase16 } = requireWithFriendlyError(
existsSync(join(__dirname, localName)) ? localName : `@rollup/rollup-${packageBase}`
existsSync(path.join(__dirname, localName)) ? localName : `@rollup/rollup-${packageBase}`
);

@@ -73,0 +73,0 @@

/*
@license
Rollup.js v4.14.1
Sun, 07 Apr 2024 07:35:08 GMT - commit 0b665c31833525c923c0fc20f43ebfca748c6670
Rollup.js v4.14.2
Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c

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

/*
@license
Rollup.js v4.14.1
Sun, 07 Apr 2024 07:35:08 GMT - commit 0b665c31833525c923c0fc20f43ebfca748c6670
Rollup.js v4.14.2
Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c

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

/*
@license
Rollup.js v4.14.1
Sun, 07 Apr 2024 07:35:08 GMT - commit 0b665c31833525c923c0fc20f43ebfca748c6670
Rollup.js v4.14.2
Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c

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

/*
@license
Rollup.js v4.14.1
Sun, 07 Apr 2024 07:35:08 GMT - commit 0b665c31833525c923c0fc20f43ebfca748c6670
Rollup.js v4.14.2
Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c

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

const promises = require('node:fs/promises');
const node_path = require('node:path');
const path = require('node:path');
const process$1 = require('node:process');

@@ -388,7 +388,7 @@ const node_url = require('node:url');

if (pluginText[0] == '.')
pluginText = node_path.resolve(pluginText);
pluginText = path.resolve(pluginText);
// Windows absolute paths must be specified as file:// protocol URL
// Note that we do not have coverage for Windows-only code paths
else if (/^[A-Za-z]:\\/.test(pluginText)) {
pluginText = node_url.pathToFileURL(node_path.resolve(pluginText)).href;
pluginText = node_url.pathToFileURL(path.resolve(pluginText)).href;
}

@@ -495,3 +495,3 @@ plugin = await requireOrImport(pluginText);

const inputOptions = {
external: (id) => (id[0] !== '.' && !node_path.isAbsolute(id)) || id.slice(-5, id.length) === '.json',
external: (id) => (id[0] !== '.' && !path.isAbsolute(id)) || id.slice(-5, id.length) === '.json',
input: fileName,

@@ -525,3 +525,3 @@ onwarn: warnings.add,

}
return loadConfigFromWrittenFile(node_path.join(node_path.dirname(fileName), `rollup.config-${Date.now()}.${bundleConfigAsCjs ? 'cjs' : 'mjs'}`), code);
return loadConfigFromWrittenFile(path.join(path.dirname(fileName), `rollup.config-${Date.now()}.${bundleConfigAsCjs ? 'cjs' : 'mjs'}`), code);
}

@@ -528,0 +528,0 @@ async function loadConfigFromWrittenFile(bundledFileName, bundledCode) {

/*
@license
Rollup.js v4.14.1
Sun, 07 Apr 2024 07:35:08 GMT - commit 0b665c31833525c923c0fc20f43ebfca748c6670
Rollup.js v4.14.2
Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c

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

/*
@license
Rollup.js v4.14.1
Sun, 07 Apr 2024 07:35:08 GMT - commit 0b665c31833525c923c0fc20f43ebfca748c6670
Rollup.js v4.14.2
Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c

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

const node_path = require('node:path');
const path = require('node:path');
const process = require('node:process');

@@ -209,3 +209,3 @@ const rollup = require('./rollup.js');

if (output.file || output.dir)
return node_path.resolve(output.file || output.dir);
return path.resolve(output.file || output.dir);
return undefined;

@@ -212,0 +212,0 @@ });

{
"name": "rollup",
"version": "4.14.1",
"version": "4.14.2",
"description": "Next-generation ES module bundler",

@@ -106,17 +106,17 @@ "main": "dist/rollup.js",

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

@@ -149,3 +149,3 @@ "dependencies": {

"@rollup/pluginutils": "^5.1.0",
"@shikijs/vitepress-twoslash": "^1.2.3",
"@shikijs/vitepress-twoslash": "^1.2.4",
"@types/eslint": "^8.56.7",

@@ -156,4 +156,4 @@ "@types/inquirer": "^9.0.7",

"@types/yargs-parser": "^21.0.3",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vue/eslint-config-prettier": "^9.0.0",

@@ -176,4 +176,4 @@ "@vue/eslint-config-typescript": "^13.0.0",

"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-vue": "^9.24.0",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-vue": "^9.24.1",
"fixturify": "^3.0.0",

@@ -188,3 +188,3 @@ "flru": "^1.0.2",

"locate-character": "^3.0.0",
"magic-string": "^0.30.8",
"magic-string": "^0.30.9",
"mocha": "^10.4.0",

@@ -197,3 +197,3 @@ "nyc": "^15.1.0",

"requirejs": "^2.3.6",
"rollup": "^4.13.2",
"rollup": "^4.14.1",
"rollup-plugin-license": "^3.3.1",

@@ -207,6 +207,6 @@ "rollup-plugin-string": "^3.0.0",

"systemjs": "^6.14.3",
"terser": "^5.30.1",
"terser": "^5.30.3",
"tslib": "^2.6.2",
"typescript": "^5.4.3",
"vite": "^5.2.7",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vitepress": "^1.0.2",

@@ -213,0 +213,0 @@ "vue": "^3.4.21",

@@ -92,2 +92,3 @@ <p align="center">

import { ajax } from 'node:utils';
var query = 'Rollup';

@@ -112,3 +113,3 @@ // call the ajax function

This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)]. <a href="https://github.com/rollup/rollup/graphs/contributors"><img src="https://opencollective.com/rollup/contributors.svg?width=890" /></a>
This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)]. <a href="https://github.com/rollup/rollup/graphs/contributors"><img src="https://opencollective.com/rollup/contributors.svg?width=890" /></a>. If you want to contribute yourself, head over to the [contribution guidelines](CONTRIBUTING.md).

@@ -115,0 +116,0 @@ ## Backers

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