author | Chloe Laisne <chloe.laisne@gmail.com> |
Mon, 17 Oct 2016 00:33:28 +0530 | |
changeset 343 | 3b2e76f5f3ca |
parent 130 | fac22d8c2df8 |
permissions | -rw-r--r-- |
/* jshint node: true */ 'use strict'; module.exports = { name: 'corpus-common-addon', included: function(app) { this._super.included(app); app.import({ development: app.bowerDirectory + '/store/store.js', production: app.bowerDirectory + '/store/store.min.js' }); app.import('vendor/shims/store.js', { exports: { 'store': ['default'] } }); }, includedCommands: function() { return { 'dl-fixtures': require('./lib/commands/dl-fixtures') }; } };