fix exports

This commit is contained in:
Matteo Pagliazzi
2019-10-01 17:53:48 +02:00
parent 4faa06f37d
commit cca5b8492b
144 changed files with 271 additions and 315 deletions

View File

@@ -12,13 +12,13 @@ import {
ANIMAL_COLOR_ACHIEVEMENTS,
} from './constants';
let api = module.exports;
const api = {};
import achievements from './achievements';
import eggs from './eggs';
import hatchingPotions from './hatching-potions';
import stable from './stable';
import * as eggs from './eggs';
import * as hatchingPotions from './hatching-potions';
import * as stable from './stable';
import gear from './gear';
import {
quests,
@@ -912,3 +912,5 @@ api.userDefaultsMobile = {
api.faq = faq;
api.loginIncentives = loginIncentives(api);
export default api;