Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@perfsee/rollup

Package Overview
Dependencies
Maintainers
5
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@perfsee/rollup - npm Package Compare versions

Comparing version 1.6.0 to 1.8.1

6

dist/adaptor.js

@@ -35,3 +35,3 @@ "use strict";

children: [],
entry: bundle.isEntry || bundle.isDynamicEntry,
entry: bundle.isEntry || bundle.isDynamicEntry || bundle.isImplicitEntry,
files: [bundle.fileName],

@@ -99,3 +99,3 @@ initial: bundle.isEntry,

return;
if (chunk.isEntry || currentChunk.initial) {
if (chunk.isEntry || chunk.isImplicitEntry || currentChunk.initial) {
const nextFound = (0, lodash_1.union)(found, chunk.imports);

@@ -133,3 +133,3 @@ chunk.imports

const entrypoints = Object.fromEntries(chunksEntries
.filter(([, { isEntry }]) => isEntry)
.filter(([, { isEntry, isDynamicEntry, isImplicitEntry }]) => isEntry || isDynamicEntry || isImplicitEntry)
.map(([id, { name }]) => {

@@ -136,0 +136,0 @@ const chunks = (0, util_1.recursivelyFindEntryChunks)(id, outputBundle)

{
"name": "@perfsee/rollup",
"version": "1.6.0",
"version": "1.8.1",
"description": "perfsee rollup plugin",

@@ -23,4 +23,4 @@ "repository": "https://github.com/perfsee/perfsee",

"dependencies": {
"@perfsee/bundle-analyzer": "1.6.0",
"@perfsee/plugin-utils": "1.6.0",
"@perfsee/bundle-analyzer": "1.8.1",
"@perfsee/plugin-utils": "1.8.1",
"chalk": "^4.1.2",

@@ -34,5 +34,9 @@ "lodash": "^4.17.21",

"devDependencies": {
"@perfsee/package": "1.8.1",
"rollup": "^2.77.0"
},
"gitHead": "25f311cef2d02f0621762f55195d52621ed98620"
"scripts": {
"analyze": "npx @perfsee/package ./ --project=perfsee"
},
"gitHead": "87c8778dd062efec899711a94f6751d84c654284"
}

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