npm install --save-dev broccoli-requirejs
Key | Mandatory | Type | Description |
---|---|---|---|
verbose |
👎 | Boolean (default false ) |
Prints the result of the optimization |
cacheInclude |
👎 | Array | See (CachingWriter documentation)[https://github.com/ember-cli/broccoli-caching-writer#documentation] |
cacheExclude |
👎 | Array | See (CachingWriter documentation)[https://github.com/ember-cli/broccoli-caching-writer#documentation] |
requirejs |
👍 | Object | RequireJS options, out or dir is used to set the output tree |
var RequireJs = require('broccoli-requirejs');
var tree = new RequireJS('lib', {
verbose : true,
requirejs : {
name : 'index',
out : 'bundle.js'
}
});
I know, right?
Running the tests:
npm test
This project is distributed under the MIT license.