Skip to content

Instantly share code, notes, and snippets.

@jeremywrowe
Last active August 29, 2015 14:19
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 jeremywrowe/8740ef0dabf8b106f5e2 to your computer and use it in GitHub Desktop.
Save jeremywrowe/8740ef0dabf8b106f5e2 to your computer and use it in GitHub Desktop.
Font-Awesomeness Brocfile.js
var EmberApp = require('ember-cli/lib/broccoli/ember-app'),
app = new EmberApp()
files = require('broccoli-static-compiler'),
trees = require('broccoli-merge-trees');
var fonts = files('./bower_components/fontawesome/fonts', {
srcDir: '/',
files: ['*'],
destDir: '/fonts'
});
module.exports = app.toTree([app.toTree(), fonts]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment