Skip to content

Releases: Wizcorp/component-extractor

Node API

12 Nov 03:19
Compare
Choose a tag to compare

Component-extractor can be launch from JavaScript with a config object.

var extractor = require('component-extractor');
var config = {
    sourcePaths: ['www'],
    excludePaths: ['bin', 'lib'],
    externalDependencies: {
        async:  { path: 'caolan/async', components: '0.9.0' },
        inherit: { path: 'component/inherit', components: '*' }
    }
};
extractor.execute(config, function (error) {
    if (error) return error;
});

initial release

09 Oct 07:09
Compare
Choose a tag to compare
Merge pull request #2 from cstoquer/master

add license