author | Chloe Laisne <chloe.laisne@gmail.com> |
Wed, 29 Jun 2016 00:35:03 +0200 | |
changeset 212 | f2c6080a73aa |
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') }; } };