azproduction / lmd

LMD - JavaScript Module-Assembler for building better web applications :warning: Project is no longer supported :warning:
http://azproduction.ru/lmd/
MIT License
449 stars 27 forks source link

Multiply sources (eg jquery+plugins) of adoped module #127

Closed azproduction closed 11 years ago

azproduction commented 11 years ago

If module path is array it will be an adopted module.

{
    "modules": {
        "jquery": {
            "path": ["jquery.js", "jquery.plugin.js", "jquery.plugin2.js"],
            "exports": "$.noConflict(true)"
        },
        "backbone": {
            // use wildcards to match multiply sources
            "path": ["backbone.js", "backbone.*.js"],
            "exports": "Backbone.noConflict()"
        }
    }
}