MCPcopy Index your code
hub / github.com/ember-cli/ember-cli / getAppJavascript

Method getAppJavascript

lib/broccoli/ember-app.js:739–754  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

737 * @return {BroccoliTree}
738 */
739 getAppJavascript() {
740 let appTrees = [].concat(this.addonTreesFor('app'), this.trees.app).filter(Boolean);
741
742 let mergedApp = mergeTrees(appTrees, {
743 overwrite: true,
744 annotation: 'TreeMerger (app)',
745 });
746
747 let appTree = new Funnel(mergedApp, {
748 srcDir: '/',
749 destDir: this.name,
750 annotation: 'ProcessedAppTree',
751 });
752
753 return appTree;
754 }
755
756 /*
757 * Gather add-ons style (css/sass/less) files and return them in a single

Callers 2

toArrayMethod · 0.95
ember-app-test.jsFile · 0.80

Calls 2

addonTreesForMethod · 0.95
filterMethod · 0.80

Tested by

no test coverage detected