Last active
August 29, 2015 14:19
-
-
Save jeremywrowe/8740ef0dabf8b106f5e2 to your computer and use it in GitHub Desktop.
Font-Awesomeness Brocfile.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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