ember-cli-build.js 1.1 KB

1234567891011121314151617181920212223242526272829
  1. /* global require, module */
  2. var EmberApp = require('ember-cli/lib/broccoli/ember-app');
  3. module.exports = function(defaults) {
  4. var app = new EmberApp(defaults, {
  5. // Add options here
  6. });
  7. app.import("bower_components/datatables/media/css/jquery.dataTables.min.css");
  8. app.import("bower_components/datatables/media/js/jquery.dataTables.min.js");
  9. app.import("bower_components/momentjs/min/moment.min.js");
  10. app.import("bower_components/select2/dist/css/select2.min.css");
  11. app.import("bower_components/select2/dist/js/select2.min.js");
  12. // Use `app.import` to add additional libraries to the generated
  13. // output files.
  14. //
  15. // If you need to use different assets in different
  16. // environments, specify an object as the first parameter. That
  17. // object's keys should be the environment name and the values
  18. // should be the asset to use in that environment.
  19. //
  20. // If the library that you are including contains AMD or ES6
  21. // modules that you would like to import into your application
  22. // please specify an object with the list of modules as keys
  23. // along with the exports of each module as its value.
  24. return app.toTree();
  25. };