Socket
Socket
Sign inDemoInstall

webpack

Package Overview
Dependencies
Maintainers
1
Versions
837
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webpack - npm Package Compare versions

Comparing version 0.7.0-beta8 to 0.7.0

LICENSE

5

lib/buildDeps.js

@@ -305,3 +305,3 @@ /*

count: requires[moduleName].length,
filename: filename
filename: filenameWithLoaders
};

@@ -328,3 +328,3 @@

type: directContexts[context.name] ? "context" : "async context",
filename: filename
filename: filenameWithLoaders
};

@@ -521,2 +521,3 @@

type: "context",
dirname: contextModuleNameWithLoaders,
filename: reason.filename

@@ -523,0 +524,0 @@ };

4

lib/buildModule.js

@@ -0,1 +1,5 @@

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
var fs = require("fs");

@@ -2,0 +6,0 @@ var parse = require("./parse");

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

profile: modu.profile,
loaders: modu.loaders,
dependencies: modu.dependencies,
reasons: modu.reasons});

@@ -458,0 +460,0 @@ sum++;

@@ -0,1 +1,5 @@

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
var buildModule = require("./buildModule");

@@ -2,0 +6,0 @@ var resolve = require("enhanced-resolve");

@@ -0,1 +1,5 @@

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
var child_process = require("child_process");

@@ -2,0 +6,0 @@

{
"name": "webpack",
"version": "0.7.0-beta8",
"version": "0.7.0",
"author": "Tobias Koppers @sokra",

@@ -5,0 +5,0 @@ "description": "Packs CommonJs/AMD 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.",

@@ -575,2 +575,5 @@ # webpack

}
dependencies: [ "filename", ... ],
loaders: [ "filename of loader", ... ]
contexts: [ "dirname of context", ... ]
warnings: [ "Some warning" ],

@@ -580,5 +583,7 @@ errors: [ "Some error" ],

"output.js": [
{ id: 0, size: 123, filename: "/home/.../main.js", reasons: [
{ type: "main" }
],
{
id: 0,
size: 123,
filename: "/home/.../main.js",
reasons: [ { type: "main" } ],
dependencies: [ "filename", ... ],

@@ -589,6 +594,6 @@ loaders: [ "filename of loader", ... ]

{ type: "require", // or "context", "async require", "async context"
count: 2,
filename: "/home/.../main.js",
// or dirname: "..." // for type = "context" or "async context"
}
count: 2,
filename: "/home/.../main.js",
// additionally: dirname: "..." // for type = "context" or "async context"
}
]},

@@ -595,0 +600,0 @@ ...

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