Skip to content

Commit 694a6b8

Browse files
committed
fix stuff
1 parent 6a9bd13 commit 694a6b8

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

bm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Object.keys(testCases).forEach(function(name) {
4141
TESTS[name + " single min workers"] = runWebpack.bind(null, name, testCases[name], true, false, true , true);
4242
});
4343

44-
var workers = new (require("./lib/Workers"))(path.join(__dirname, "lib", "buildModuleFork.js"), require("os").cpus().length)
44+
var workers = new (require("./lib/Workers"))(path.join(__dirname, "lib", "worker.js"), require("os").cpus().length)
4545
function runWebpack(name, file, single, debug, min, withWorkers, cb) {
4646
webpack(file, {
4747
output: path.join(root, "js", "bm", name.trim() + ".js"),

lib/buildModule.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ function buildModule(context, request,
4444
preLoaders: preLoaders.map(resolve.stringify.part),
4545
postLoaders: postLoaders.map(resolve.stringify.part),
4646
loaderType: null,
47+
web: true,
4748
emitWarning: function(warning) {
4849
extraResults.warnings.push(warning);
4950
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webpack",
3-
"version": "0.8.0-beta3",
3+
"version": "0.8.0-beta4",
44
"author": "Tobias Koppers @sokra",
55
"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.",
66
"dependencies": {

0 commit comments

Comments
 (0)