Socket
Socket
Sign inDemoInstall

rollup

Package Overview
Dependencies
12
Maintainers
5
Versions
800
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.0-19 to 4.0.0-20

4

dist/es/getLogFilter.js
/*
@license
Rollup.js v4.0.0-19
Fri, 15 Sep 2023 18:50:14 GMT - commit 25753ad04d73429f0d7b4d5dc85df09aeae78485
Rollup.js v4.0.0-20
Sun, 24 Sep 2023 06:09:55 GMT - commit 9d6dc574c6dca3d85e9eda512b09797a6d15462f

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

/*
@license
Rollup.js v4.0.0-19
Fri, 15 Sep 2023 18:50:14 GMT - commit 25753ad04d73429f0d7b4d5dc85df09aeae78485
Rollup.js v4.0.0-20
Sun, 24 Sep 2023 06:09:55 GMT - commit 9d6dc574c6dca3d85e9eda512b09797a6d15462f

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

/*
@license
Rollup.js v4.0.0-19
Fri, 15 Sep 2023 18:50:14 GMT - commit 25753ad04d73429f0d7b4d5dc85df09aeae78485
Rollup.js v4.0.0-20
Sun, 24 Sep 2023 06:09:55 GMT - commit 9d6dc574c6dca3d85e9eda512b09797a6d15462f

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

/*
@license
Rollup.js v4.0.0-19
Fri, 15 Sep 2023 18:50:14 GMT - commit 25753ad04d73429f0d7b4d5dc85df09aeae78485
Rollup.js v4.0.0-20
Sun, 24 Sep 2023 06:09:55 GMT - commit 9d6dc574c6dca3d85e9eda512b09797a6d15462f

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

@@ -18,4 +18,2 @@ export const VERSION: string;

export type RollupWarning = RollupLog;
export interface RollupLog {

@@ -185,4 +183,2 @@ binding?: string;

hasDefaultExport: boolean | null;
/** @deprecated Use `moduleSideEffects` instead */
hasModuleSideEffects: boolean | 'no-treeshake';
id: string;

@@ -224,4 +220,2 @@ implicitlyLoadedAfterOneOf: readonly string[];

) => Promise<ModuleInfo>;
/** @deprecated Use `this.getModuleIds` instead */
moduleIds: IterableIterator<string>;
parse: (input: string) => AstNode;

@@ -293,4 +287,2 @@ resolve: (

export type IsPureModule = (id: string) => boolean | NullValue;
export type HasModuleSideEffects = (id: string, external: boolean) => boolean;

@@ -578,12 +570,6 @@

external?: ExternalOption;
/** @deprecated Use the "inlineDynamicImports" output option instead. */
inlineDynamicImports?: boolean;
input?: InputOption;
logLevel?: LogLevelOption;
makeAbsoluteExternalsRelative?: boolean | 'ifRelativeSource';
/** @deprecated Use the "manualChunks" output option instead. */
manualChunks?: ManualChunksOption;
maxParallelFileOps?: number;
/** @deprecated Use the "maxParallelFileOps" option instead. */
maxParallelFileReads?: number;
moduleContext?: ((id: string) => string | NullValue) | { [id: string]: string };

@@ -595,4 +581,2 @@ onLog?: LogHandlerWithDefault;

preserveEntrySignatures?: PreserveEntrySignaturesOption;
/** @deprecated Use the "preserveModules" output option instead. */
preserveModules?: boolean;
preserveSymlinks?: boolean;

@@ -615,20 +599,11 @@ shimMissingExports?: boolean;

external: IsExternal;
/** @deprecated Use the "inlineDynamicImports" output option instead. */
inlineDynamicImports: boolean | undefined;
input: string[] | { [entryAlias: string]: string };
logLevel: LogLevelOption;
makeAbsoluteExternalsRelative: boolean | 'ifRelativeSource';
/** @deprecated Use the "manualChunks" output option instead. */
manualChunks: ManualChunksOption | undefined;
maxParallelFileOps: number;
/** @deprecated Use the "maxParallelFileOps" option instead. */
maxParallelFileReads: number;
moduleContext: (id: string) => string;
onLog: LogHandler;
onwarn: (warning: RollupLog) => void;
perf: boolean;
plugins: Plugin[];
preserveEntrySignatures: PreserveEntrySignaturesOption;
/** @deprecated Use the "preserveModules" output option instead. */
preserveModules: boolean | undefined;
preserveSymlinks: boolean;

@@ -709,9 +684,5 @@ shimMissingExports: boolean;

dir?: string;
/** @deprecated Use the "renderDynamicImport" plugin hook instead. */
dynamicImportFunction?: string;
dynamicImportInCjs?: boolean;
entryFileNames?: string | ((chunkInfo: PreRenderedChunk) => string);
esModule?: boolean | 'if-default-prop';
/** @deprecated This option is no longer needed and ignored. */
experimentalDeepDynamicChunkOptimization?: boolean;
experimentalMinChunkSize?: number;

@@ -739,4 +710,2 @@ exports?: 'default' | 'named' | 'none' | 'auto';

name?: string;
/** @deprecated Use "generatedCode.symbols" instead. */
namespaceToStringTag?: boolean;
noConflict?: boolean;

@@ -746,4 +715,2 @@ outro?: string | AddonFunction;

plugins?: OutputPluginOption;
/** @deprecated Use "generatedCode.constBindings" instead. */
preferConst?: boolean;
preserveModules?: boolean;

@@ -771,9 +738,5 @@ preserveModulesRoot?: string;

dir: string | undefined;
/** @deprecated Use the "renderDynamicImport" plugin hook instead. */
dynamicImportFunction: string | undefined;
dynamicImportInCjs: boolean;
entryFileNames: string | ((chunkInfo: PreRenderedChunk) => string);
esModule: boolean | 'if-default-prop';
/** @deprecated This option is no longer needed and ignored. */
experimentalDeepDynamicChunkOptimization: boolean;
experimentalMinChunkSize: number;

@@ -800,4 +763,2 @@ exports: 'default' | 'named' | 'none' | 'auto';

name: string | undefined;
/** @deprecated Use "generatedCode.symbols" instead. */
namespaceToStringTag: boolean;
noConflict: boolean;

@@ -807,4 +768,2 @@ outro: AddonFunction;

plugins: OutputPlugin[];
/** @deprecated Use "generatedCode.constBindings" instead. */
preferConst: boolean;
preserveModules: boolean;

@@ -811,0 +770,0 @@ preserveModulesRoot: string | undefined;

/*
@license
Rollup.js v4.0.0-19
Fri, 15 Sep 2023 18:50:14 GMT - commit 25753ad04d73429f0d7b4d5dc85df09aeae78485
Rollup.js v4.0.0-20
Sun, 24 Sep 2023 06:09:55 GMT - commit 9d6dc574c6dca3d85e9eda512b09797a6d15462f

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

/*
@license
Rollup.js v4.0.0-19
Fri, 15 Sep 2023 18:50:14 GMT - commit 25753ad04d73429f0d7b4d5dc85df09aeae78485
Rollup.js v4.0.0-20
Sun, 24 Sep 2023 06:09:55 GMT - commit 9d6dc574c6dca3d85e9eda512b09797a6d15462f

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

/*
@license
Rollup.js v4.0.0-19
Fri, 15 Sep 2023 18:50:14 GMT - commit 25753ad04d73429f0d7b4d5dc85df09aeae78485
Rollup.js v4.0.0-20
Sun, 24 Sep 2023 06:09:55 GMT - commit 9d6dc574c6dca3d85e9eda512b09797a6d15462f

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

/*
@license
Rollup.js v4.0.0-19
Fri, 15 Sep 2023 18:50:14 GMT - commit 25753ad04d73429f0d7b4d5dc85df09aeae78485
Rollup.js v4.0.0-20
Sun, 24 Sep 2023 06:09:55 GMT - commit 9d6dc574c6dca3d85e9eda512b09797a6d15462f

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

/*
@license
Rollup.js v4.0.0-19
Fri, 15 Sep 2023 18:50:14 GMT - commit 25753ad04d73429f0d7b4d5dc85df09aeae78485
Rollup.js v4.0.0-20
Sun, 24 Sep 2023 06:09:55 GMT - commit 9d6dc574c6dca3d85e9eda512b09797a6d15462f

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

/*
@license
Rollup.js v4.0.0-19
Fri, 15 Sep 2023 18:50:14 GMT - commit 25753ad04d73429f0d7b4d5dc85df09aeae78485
Rollup.js v4.0.0-20
Sun, 24 Sep 2023 06:09:55 GMT - commit 9d6dc574c6dca3d85e9eda512b09797a6d15462f

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

{
"name": "rollup",
"version": "4.0.0-19",
"version": "4.0.0-20",
"description": "Next-generation ES module bundler",

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

"scripts": {
"build": "npm run build:wasm && concurrently -c green,blue 'npm run build:napi -- --release' 'npm:build:js' && npm run build:copy-native",
"build": "npm run build:wasm && concurrently -c green,blue \"npm run build:napi -- --release\" \"npm:build:js\" && npm run build:copy-native",
"build:quick": "concurrently -c green,blue 'npm:build:napi' 'npm:build:cjs' && npm run build:copy-native",

@@ -43,3 +43,3 @@ "build:napi": "napi build --platform --dts native.d.ts --js native.js --cargo-cwd rust -p bindings_napi --cargo-name bindings_napi",

"build:js:node": "rollup --config rollup.config.ts --configPlugin typescript --configIsBuildNode",
"build:prepare": "concurrently -c green,blue 'npm run build:napi -- --release' 'npm:build:js:node' && npm run build:copy-native",
"build:prepare": "concurrently -c green,blue \"npm run build:napi -- --release\" \"npm:build:js:node\" && npm run build:copy-native",
"update:js": "npm run build:js && npm run build:copy-native",

@@ -103,13 +103,13 @@ "build:copy-native": "shx mkdir -p dist && shx cp rollup.*.node dist/",

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

@@ -123,5 +123,5 @@ "devDependenciesComments": {

"@codemirror/language": "^6.9.0",
"@codemirror/search": "^6.5.2",
"@codemirror/search": "^6.5.3",
"@codemirror/state": "^6.2.1",
"@codemirror/view": "^6.18.1",
"@codemirror/view": "^6.19.0",
"@jridgewell/sourcemap-codec": "^1.4.15",

@@ -141,8 +141,8 @@ "@mermaid-js/mermaid-cli": "^10.4.0",

"@types/mocha": "^10.0.1",
"@types/node": "~18.17.5",
"@types/node": "18.0.0",
"@types/yargs-parser": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/eslint-config-typescript": "^12.0.0",
"acorn": "^8.10.0",

@@ -183,3 +183,3 @@ "acorn-import-assertions": "^1.9.0",

"requirejs": "^2.3.6",
"rollup": "^3.29.1",
"rollup": "^3.29.2",
"rollup-plugin-license": "^3.1.0",

@@ -198,3 +198,3 @@ "rollup-plugin-string": "^3.0.0",

"vite": "^4.4.9",
"vitepress": "^1.0.0-rc.12",
"vitepress": "^1.0.0-rc.14",
"vue": "^3.3.4",

@@ -216,3 +216,3 @@ "wasm-pack": "^0.12.1",

"engines": {
"node": ">=14.18.0",
"node": ">=18.0.0",
"npm": ">=8.0.0"

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

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