ember-cli-ajh
Version:
Command line tool for developing ambitious ember.js apps
29 lines (25 loc) • 584 B
JavaScript
/* global require, module */
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
module.exports = function (defaults) {
var app = new EmberApp(defaults, {
outputPaths: {
app: {
html: 'my-app.html',
css: {
'app': '/css/app.css',
'theme': '/css/theme/a.css'
},
js: '/js/app.js'
},
vendor: {
css: '/css/vendor.css',
js: '/js/vendor.js'
},
testSupport: {
css: '/css/test-support.css',
js: '/js/test-support.js'
}
}
});
return app.toTree();
};