mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-25 10:30:04 +00:00
12 lines
325 B
JavaScript
12 lines
325 B
JavaScript
'use strict';
|
|
|
|
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
|
|
const buildCliOptionsFor = require('../../configs/ember-cli-build-options');
|
|
|
|
module.exports = function(defaults) {
|
|
const { options } = buildCliOptionsFor(EmberApp.env());
|
|
const app = new EmberApp(defaults, options);
|
|
|
|
return app.toTree();
|
|
};
|