| author | ymh <ymh.work@gmail.com> |
| Mon, 30 May 2016 00:32:20 +0200 | |
| changeset 164 | 5f1e1cc17e8a |
| 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') }; } };