webworkify-webpack
Advanced tools
Comparing version 2.1.4 to 2.1.5
@@ -77,3 +77,3 @@ function webpackBootstrapFunc (modules) { | ||
var moduleNameReqExp = '[\\.|\\-|\\+|\\w|\/|@]+' | ||
var dependencyRegExp = '\\(([\n\r]*\\s*)?(\/\\*.*?\\*\/)?\\s?([\n\r]*\\s*)?.*?(' + moduleNameReqExp + ').*?\\)' // additional chars when output.pathinfo is true | ||
var dependencyRegExp = '\\(\\s*(\/\\*.*?\\*\/)?\\s*.*?(' + moduleNameReqExp + ').*?\\)' // additional chars when output.pathinfo is true | ||
@@ -102,4 +102,4 @@ // http://stackoverflow.com/a/2593661/130442 | ||
while ((match = re.exec(fnString))) { | ||
if (match[5] === 'dll-reference') continue | ||
retval[queueName].push(match[5]) | ||
if (match[3] === 'dll-reference') continue | ||
retval[queueName].push(match[3]) | ||
} | ||
@@ -115,3 +115,3 @@ | ||
retval[match[2]] = retval[match[2]] || [] | ||
retval[match[2]].push(match[6]) | ||
retval[match[2]].push(match[4]) | ||
} | ||
@@ -118,0 +118,0 @@ |
{ | ||
"name": "webworkify-webpack", | ||
"version": "2.1.4", | ||
"version": "2.1.5", | ||
"description": "launch a web worker at runtime that can require() in the browser with webpack", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
16283