sethbrasile/ember-remodal

View on GitHub
ember-cli-build.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

const EmberAddon = require('ember-cli/lib/broccoli/ember-addon');

module.exports = function(defaults) {
  let app = new EmberAddon(defaults, {
    'ember-cli-babel': {
      includePolyfill: true,
    },

    stylusOptions: {
      outputFile: 'dummy.css'
    },

    'ember-prism': {
      theme: 'okaidia',
      components: ['javascript', 'handlebars', 'markup-templating']
    },

    'ember-bootstrap': {
      'bootstrapVersion': 3,
      'importBootstrapFont': false,
      'importBootstrapCSS': true
    }
  });

  return app.toTree();
};