Socket
Socket
Sign inDemoInstall

webpack

Package Overview
Dependencies
56
Maintainers
1
Versions
832
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.4.3 to 0.4.4

6

lib/buildDeps.js

@@ -400,6 +400,6 @@ /*

if(a.chunks && b.chunks &&
(a.chunks.indexOf(0) !== -1 || b.chunks.indexOf(0) !== -1)) {
if(a.chunks.indexOf(0) === -1)
(a.chunks.indexOf("main") !== -1 || b.chunks.indexOf("main") !== -1)) {
if(a.chunks.indexOf("main") === -1)
return 1;
if(b.chunks.indexOf(0) === -1)
if(b.chunks.indexOf("main") === -1)
return -1;

@@ -406,0 +406,0 @@ }

@@ -217,2 +217,4 @@ /*

chunkIds.sort(function(a,b) {
if(typeof depTree.chunks[b].realId !== "number") return 1;
if(typeof depTree.chunks[a].realId !== "number") return -1;
return depTree.chunks[b].realId - depTree.chunks[a].realId;

@@ -219,0 +221,0 @@ });

{
"name": "webpack",
"version": "0.4.3",
"version": "0.4.4",
"author": "Tobias Koppers @sokra",

@@ -5,0 +5,0 @@ "description": "Packs CommonJs Modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loading of js, json, jade, coffee, css, ... out of the box and more with custom loaders.",

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