broccoli-ember-preparse
v0.0.6
Published
Broccoli plugin that applies some compile time performance optimizations to an ember build.
Downloads
4
Readme
broccoli-ember-preparse
Broccoli plugin that applies some compile time performance optimizations to an ember build.
Essentially a broccoli plugin version of define-rewriter.
Credit to Chad Hietala and Kris Selden for the idea and the proof of concept.
Usage
var preparse = require('broccoli-ember-preparse');
var Funnel = require('broccoli-funnel');
var bowerDist = new Funnel('bower_components/ember', {
exclude: ['.bower.json']
});
var options = {};
var newDist = preparse(bowerDist, options);