Created
June 25, 2014 19:58
-
-
Save danfinlay/2c89e09cb484a85704aa to your computer and use it in GitHub Desktop.
7 second Broccoli Build
This file contains hidden or 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
| /* global require, module */ | |
| var EmberApp = require('ember-cli/lib/broccoli/ember-app'); | |
| var app = new EmberApp({ | |
| name: require('./package.json').name, | |
| es3Safe: false, | |
| minifyCSS: { | |
| enabled: true, | |
| options: {} | |
| }, | |
| getEnvJSON: require('./config/environment') | |
| }); | |
| app.import({ | |
| development: 'vendor/ember-data/ember-data.js', | |
| production: 'vendor/ember-data/ember-data.prod.js' | |
| }, { | |
| 'ember-data': [ | |
| 'default' | |
| ] | |
| }); | |
| app.import('vendor/ic-ajax/dist/named-amd/main.js', { | |
| 'ic-ajax': [ | |
| 'default', | |
| 'defineFixture', | |
| 'lookupFixture', | |
| 'raw', | |
| 'request', | |
| ] | |
| }); | |
| app.import('vendor/pikaday/pikaday.js'); | |
| app.import('vendor/pikaday/css/pikaday.css'); | |
| module.exports = app.toTree(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment