mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-09 09:47:56 +00:00
15 lines
400 B
JavaScript
15 lines
400 B
JavaScript
'use strict';
|
|
const buildCliOptionsFor = require('../../configs/ember-cli-build-options');
|
|
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
|
|
const { options } = buildCliOptionsFor(EmberApp.env());
|
|
|
|
module.exports = {
|
|
name: require('./package').name,
|
|
isDevelopingAddon: () => true,
|
|
...require('../../configs/import-mirage-tree-from-addon'),
|
|
|
|
options: {
|
|
ace: options.ace
|
|
}
|
|
};
|