Skip to content

Instantly share code, notes, and snippets.

@taras
Last active August 29, 2015 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taras/10566018 to your computer and use it in GitHub Desktop.
Save taras/10566018 to your computer and use it in GitHub Desktop.
// pre 0.9
module.exports = function(broccoli) {
var tree = broccoli.mergeTree('path');
return tree;
}
// 0.9
var tree = 'path'; // tree can also be a bunch of declerative statements that produce a tree (instead of a string)
module.exports = tree;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment