A EmberScript filter for Broccoli. This plugin simply compiles EmberScript to JS for Broccoli to further process, allowing Broccoli to control things such as optimization.
npm install --save-dev broccoli-ember-script
var filterEmberScript = require('broccoli-ember-script');
tree = filterEmberScript(tree, options);
If bare
is true, the EmberScript compiler will not emit a top-level
function wrapper:
filterEmberScript(tree, {
bare: true
})
Source maps are not yet supported.