lmd
lmd copied to clipboard
LMD - JavaScript Module-Assembler for building better web applications :warning: Project is no longer supported :warning:
[UglifyJS2](https://github.com/mishoo/UglifyJS2), for example, allows you to specify an input source map from the first stage of compilation, enabling multi-level mapping. I have a js-code generated by [traceur](https://github.com/aikar/traceur) and source map...
Добрый день ! В коде lmd: ``` var processBundleJSONP = function (_main, _modules, _modules_options) { if (typeof _main === "object") { _modules_options = _modules; _modules = _main; } for (var...
My app uses module (master) that depends on 2 other modules (slave1, slave2). What approach should I select? ``` app/ --- .lmd/ --------- app.lmd.json --- app.js modules/ --- master/ ------...
sheet.cssRules in firefox call exception, but css in this time is not loaded.
Добрый днеь ! наткнулся некорректную работу под firefox sb.require.css = function (moduleName, callback) ``` function isRules(sheet) { if ((sheet.ownerNode || sheet.owningElement).id != id) { return false; } try { //...
Обратил внимание что LMD собирает в сборку даже те -AMD- модули, которые не используются. Есть даже соответсвующие ворнинги: ``` warn: Some of your modules are declared but not used: warn:...
Хотелось бы иметь секцию в конфиге для Autopolyfiller'a, как с UglifyJS, т.к. сейчас приходится держать аж три отдельных таска: ``` grunt-lmd (-> build.js) grunt-autopolyfiller (->polyfills.js) grunt-contrib-concat (-> polyfills.js + build.js)...
I am using LMD via **grunt**, so all my configs in Gruntfile, but due this requirement i has to create an empty `.lmd/build.json` file. I this case `build` option is...
I've created my own little plugin as described in [manual](https://github.com/azproduction/lmd/wiki/User-made-plugins). Tested it and everything worked just fine. Then I've tried to minify my build by enabling "pack" option in config...