Comparing version 0.3.11 to 0.3.12
@@ -214,2 +214,5 @@ #!/usr/bin/env node | ||
buildins = new RegExp("^" + buildins + "|(!)" + buildins, "g"); | ||
var node_modulesRegExpA = /\/node_modules\//g; | ||
var node_modulesRegExpB = /\\node_modules\\/g; | ||
var index_jsRegExp = /[\\\/]index.js!/g; | ||
function compressFilename(filename) { | ||
@@ -223,4 +226,6 @@ if(!filename) | ||
filename = filename.replace(buildins, "!(webpack)"); | ||
filename = filename.replace(cwdParent, "!.."); | ||
return filename.replace(/^!/, ""); | ||
filename = filename.replace(node_modulesRegExpA, "/~/"); | ||
filename = filename.replace(node_modulesRegExpB, "\\~\\"); | ||
filename = filename.replace(index_jsRegExp, "!"); | ||
return filename.replace(/^!|!$/, ""); | ||
} | ||
@@ -227,0 +232,0 @@ if(stats.fileModules) { |
{ | ||
"name": "webpack", | ||
"version": "0.3.11", | ||
"version": "0.3.12", | ||
"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.", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
339923
134
9506