caleb / broccoli-fast-browserify

A caching, flexible Browserify Broccoli filter
https://github.com/caleb/broccoli-fast-browserify
BSD 3-Clause "New" or "Revised" License
14 stars 7 forks source link

Allow using fullPaths=false in browserify #7

Closed caleb closed 9 years ago

caleb commented 9 years ago

fullPaths=false is the default for browserfiy, so it's the default for this module as well.

If you want fullPath support you need to specify the fullPaths option to true in the browserify options:

var tree = fastBrowserify({
  browserify: {
     fullPaths: true
     ...
  },
  ...
});