Skip to content
This repository has been archived by the owner on May 25, 2019. It is now read-only.

v0.3.4

Compare
Choose a tag to compare
@isao isao released this 18 Jul 20:47
· 91 commits to master since this release

One change: Allow bundle build directory naming to be specified by a function
passed as a parameter to parseBundle via option object key named
"bundleBuildDirectoryParser". The function is passed the bundle object
(see lib/bundle.js).

i.e.

var locator = new Locator({buildDirectory: 'build'}),
    opts = {bundleBuildDirectoryParser: function(bundle) {
            return bundle.name + '_' + bundle.version;
        }};

locator.parseBundle(__dirname, opts).then(/* ... */);