thlorenz / proxyquireify

browserify >= v2 version of proxyquire. Mocks out browserify's require to allow stubbing out dependencies while testing.
MIT License
152 stars 24 forks source link

Fix build script in example #14

Closed azu closed 9 years ago

azu commented 9 years ago

Hi, I'm trying to foobar example and get an error:

> foobar@0.0.0 test /Users/azu/workspace/toybox/proxyquireify/examples/foobar
> node build && open index.html

/Users/azu/workspace/toybox/proxyquireify/node_modules/browserify/index.js:456
        throw new Error(
              ^
Error: bundle() no longer accepts option arguments.
Move all option arguments to the browserify() constructor.
    at Browserify.bundle (/Users/azu/workspace/toybox/proxyquireify/node_modules/browserify/index.js:456:15)
    at Object.<anonymous> (/Users/azu/workspace/toybox/proxyquireify/examples/foobar/build.js:9:4)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Function.Module.runMain (module.js:497:10)
    at startup (node.js:119:16)
    at node.js:906:3

bundle() no longer accepts option arguments with browserify 5.0.

This pull request fixes build.js.

thlorenz commented 9 years ago

Thanks