Socket
Socket
Sign inDemoInstall

rollup

Package Overview
Dependencies
15
Maintainers
5
Versions
797
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.11.0 to 4.12.0

4

dist/es/getLogFilter.js
/*
@license
Rollup.js v4.11.0
Thu, 15 Feb 2024 06:09:01 GMT - commit 90ad652b745c5fe7167d92b4ad671cc387577a99
Rollup.js v4.12.0
Fri, 16 Feb 2024 13:31:42 GMT - commit 0146b84be33a8416b4df4b9382549a7ca19dd64a

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

/*
@license
Rollup.js v4.11.0
Thu, 15 Feb 2024 06:09:01 GMT - commit 90ad652b745c5fe7167d92b4ad671cc387577a99
Rollup.js v4.12.0
Fri, 16 Feb 2024 13:31:42 GMT - commit 0146b84be33a8416b4df4b9382549a7ca19dd64a

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

/*
@license
Rollup.js v4.11.0
Thu, 15 Feb 2024 06:09:01 GMT - commit 90ad652b745c5fe7167d92b4ad671cc387577a99
Rollup.js v4.12.0
Fri, 16 Feb 2024 13:31:42 GMT - commit 0146b84be33a8416b4df4b9382549a7ca19dd64a

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

/*
@license
Rollup.js v4.11.0
Thu, 15 Feb 2024 06:09:01 GMT - commit 90ad652b745c5fe7167d92b4ad671cc387577a99
Rollup.js v4.12.0
Fri, 16 Feb 2024 13:31:42 GMT - commit 0146b84be33a8416b4df4b9382549a7ca19dd64a

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

/*
@license
Rollup.js v4.11.0
Thu, 15 Feb 2024 06:09:01 GMT - commit 90ad652b745c5fe7167d92b4ad671cc387577a99
Rollup.js v4.12.0
Fri, 16 Feb 2024 13:31:42 GMT - commit 0146b84be33a8416b4df4b9382549a7ca19dd64a

@@ -23,4 +23,4 @@ https://github.com/rollup/rollup

require('path');
require('./native.js');
require('node:perf_hooks');
require('./native.js');
require('./getLogFilter.js');

@@ -27,0 +27,0 @@

/*
@license
Rollup.js v4.11.0
Thu, 15 Feb 2024 06:09:01 GMT - commit 90ad652b745c5fe7167d92b4ad671cc387577a99
Rollup.js v4.12.0
Fri, 16 Feb 2024 13:31:42 GMT - commit 0146b84be33a8416b4df4b9382549a7ca19dd64a

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

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

import type { Program } from 'estree';
import type { Node as EstreeNode, Program } from 'estree';

@@ -982,10 +982,19 @@ export const VERSION: string;

interface AstNode {
interface AstNodeLocation {
end: number;
start: number;
type: string;
}
type ProgramNode = Program & AstNode;
type OmittedEstreeKeys =
| 'loc'
| 'range'
| 'leadingComments'
| 'trailingComments'
| 'innerComments'
| 'comments';
type RollupAstNode<T> = Omit<T, OmittedEstreeKeys> & AstNodeLocation;
type ProgramNode = RollupAstNode<Program>;
export type AstNode = RollupAstNode<EstreeNode>;
export function defineConfig(options: RollupOptions): RollupOptions;

@@ -992,0 +1001,0 @@ export function defineConfig(options: RollupOptions[]): RollupOptions[];

/*
@license
Rollup.js v4.11.0
Thu, 15 Feb 2024 06:09:01 GMT - commit 90ad652b745c5fe7167d92b4ad671cc387577a99
Rollup.js v4.12.0
Fri, 16 Feb 2024 13:31:42 GMT - commit 0146b84be33a8416b4df4b9382549a7ca19dd64a

@@ -21,4 +21,4 @@ https://github.com/rollup/rollup

require('path');
require('./native.js');
require('node:perf_hooks');
require('./native.js');
require('node:fs/promises');

@@ -25,0 +25,0 @@

/*
@license
Rollup.js v4.11.0
Thu, 15 Feb 2024 06:09:01 GMT - commit 90ad652b745c5fe7167d92b4ad671cc387577a99
Rollup.js v4.12.0
Fri, 16 Feb 2024 13:31:42 GMT - commit 0146b84be33a8416b4df4b9382549a7ca19dd64a

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

/*
@license
Rollup.js v4.11.0
Thu, 15 Feb 2024 06:09:01 GMT - commit 90ad652b745c5fe7167d92b4ad671cc387577a99
Rollup.js v4.12.0
Fri, 16 Feb 2024 13:31:42 GMT - commit 0146b84be33a8416b4df4b9382549a7ca19dd64a

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

/*
@license
Rollup.js v4.11.0
Thu, 15 Feb 2024 06:09:01 GMT - commit 90ad652b745c5fe7167d92b4ad671cc387577a99
Rollup.js v4.12.0
Fri, 16 Feb 2024 13:31:42 GMT - commit 0146b84be33a8416b4df4b9382549a7ca19dd64a

@@ -32,4 +32,4 @@ https://github.com/rollup/rollup

require('tty');
require('../native.js');
require('node:perf_hooks');
require('../native.js');
require('node:url');

@@ -36,0 +36,0 @@ require('../getLogFilter.js');

/*
@license
Rollup.js v4.11.0
Thu, 15 Feb 2024 06:09:01 GMT - commit 90ad652b745c5fe7167d92b4ad671cc387577a99
Rollup.js v4.12.0
Fri, 16 Feb 2024 13:31:42 GMT - commit 0146b84be33a8416b4df4b9382549a7ca19dd64a

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

{
"name": "rollup",
"version": "4.11.0",
"version": "4.12.0",
"description": "Next-generation ES module bundler",

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

"lint:rust:nofix": "cd rust && cargo fmt --check && cargo clippy",
"perf": "npm run build:cjs && node --expose-gc scripts/perf.js",
"perf:init": "node scripts/perf-init.js",
"perf": "npm run build && node --expose-gc scripts/perf.js",
"prepare": "husky && node scripts/check-release.js || npm run build:prepare",

@@ -79,3 +78,3 @@ "prepublishOnly": "node scripts/check-release.js && node scripts/prepublish.js",

"test:quick": "mocha -b test/test.js",
"test:all": "concurrently --kill-others-on-fail -c green,blue,magenta,cyan,red 'npm:test:only' 'npm:test:browser' 'npm:test:typescript' 'npm:test:leak' 'npm:test:package' 'npm:test:options'",
"test:all": "concurrently --kill-others-on-fail -c green,blue,magenta,cyan,red 'npm:test:only' 'npm:test:browser' 'npm:test:typescript' 'npm:test:package' 'npm:test:options'",
"test:coverage": "npm run build:cjs && shx rm -rf coverage/* && nyc --reporter html mocha test/test.js",

@@ -107,15 +106,15 @@ "test:coverage:browser": "npm run build && shx rm -rf coverage/* && nyc mocha test/browser/index.js",

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

@@ -127,3 +126,4 @@ "dependencies": {

"@types/node": "Version 18.19.0 breaks chokidar and vite types",
"vitepress": "Version 1.0.0-rc.40 breaks npm run dev"
"vitepress": "Version 1.0.0-rc.40 breaks npm run dev",
"core-js": "We only update manually as every update requires a snapshot update"
},

@@ -134,7 +134,7 @@ "devDependencies": {

"@codemirror/language": "^6.10.1",
"@codemirror/search": "^6.5.5",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.23.1",
"@codemirror/view": "^6.24.0",
"@jridgewell/sourcemap-codec": "^1.4.15",
"@mermaid-js/mermaid-cli": "^10.7.0",
"@mermaid-js/mermaid-cli": "^10.8.0",
"@napi-rs/cli": "^2.18.0",

@@ -155,4 +155,4 @@ "@rollup/plugin-alias": "^5.1.0",

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

@@ -164,6 +164,6 @@ "@vue/eslint-config-typescript": "^12.0.0",

"builtin-modules": "^3.3.0",
"chokidar": "^3.5.3",
"chokidar": "^3.6.0",
"colorette": "^2.0.20",
"concurrently": "^8.2.2",
"core-js": "^3.35.1",
"core-js": "3.36.0",
"date-time": "^4.0.0",

@@ -176,3 +176,3 @@ "es5-shim": "^4.6.7",

"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^50.0.1",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-vue": "^9.21.1",

@@ -189,3 +189,3 @@ "fixturify": "^3.0.0",

"magic-string": "^0.30.7",
"mocha": "^10.2.0",
"mocha": "^10.3.0",
"nyc": "^15.1.0",

@@ -197,3 +197,3 @@ "pinia": "^2.1.7",

"requirejs": "^2.3.6",
"rollup": "^4.9.6",
"rollup": "^4.10.0",
"rollup-plugin-license": "^3.2.0",

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

"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite": "^5.1.1",
"vitepress": "1.0.0-rc.39",
"vue": "^3.4.15",
"vue": "^3.4.18",
"wasm-pack": "^0.12.1",

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