forked from elwayman02/ember-data-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathember-cli-build.js
More file actions
22 lines (18 loc) · 858 Bytes
/
Copy pathember-cli-build.js
File metadata and controls
22 lines (18 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* eslint-env node */
const EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
module.exports = function(defaults) {
var app = new EmberAddon(defaults, {
// Add options here
});
/*
This build file specifies the options for the dummy test app of this
addon, located in `/tests/dummy`
This build file does *not* influence how the addon or the app using it
behave. You most likely want to be modifying `./index.js` or app's build file
*/
app.import(app.bowerDirectory + '/FakeXMLHttpRequest/fake_xml_http_request.js', { type: 'test' });
app.import(app.bowerDirectory + '/route-recognizer/dist/route-recognizer.js', { type: 'test' });
app.import(app.bowerDirectory + '/pretender/pretender.js', { type: 'test' });
app.import(app.bowerDirectory + '/rosie/src/rosie.js', { type: 'test' });
return app.toTree();
};