Merge pull request #6811 from crookedneighbor/upgrade_babel

chore: upgrade babel to v6
This commit is contained in:
Blade Barringer
2016-03-04 08:36:08 -06:00
55 changed files with 132 additions and 101 deletions
@@ -1,5 +1,5 @@
import {forOwn} from 'lodash';
let t = require('../translation.js');
import t from '../translation';
/* eslint-disable camelcase */
let backgrounds = {
@@ -320,4 +320,4 @@ forOwn(backgrounds, function prefillBackgroundSet (value) {
});
});
export default backgrounds;
module.exports = backgrounds;
@@ -1,6 +1,6 @@
import prefill from '../prefill.js';
export default prefill({
module.exports = prefill({
0: {},
1: {},
2: {},
@@ -1,6 +1,7 @@
import prefill from '../prefill.js';
import sets from '../sets.js';
export default prefill({
module.exports = prefill({
0: {},
1: {},
2: {price: 2, set: sets.baseHair1},
@@ -1,7 +1,7 @@
import sets from '../sets.js';
import prefill from '../prefill.js';
export default prefill({
module.exports = prefill({
0: {},
1: {price: 2, set: sets.facialHair},
2: {price: 2, set: sets.facialHair},
@@ -1,7 +1,7 @@
import sets from '../sets.js';
import prefill from '../prefill.js';
export default prefill({
module.exports = prefill({
white: {},
brown: {},
blond: {},
@@ -1,6 +1,6 @@
import prefill from '../prefill.js';
export default prefill({
module.exports = prefill({
0: {},
1: {},
2: {},
@@ -5,7 +5,7 @@ import color from './color.js';
import flower from './flower.js';
import mustache from './mustache.js';
export default {
module.exports = {
color,
base,
bangs,
@@ -1,7 +1,7 @@
import sets from '../sets.js';
import prefill from '../prefill.js';
export default prefill({
module.exports = prefill({
0: {},
1: {price: 2, set: sets.facialHair},
2: {price: 2, set: sets.facialHair},
+2 -2
View File
@@ -1,6 +1,6 @@
import {forOwn} from 'lodash';
export default function prefillAppearances (obj) {
module.exports = function prefillAppearances (obj) {
forOwn(obj, function prefillAppearance (value, key) {
value.key = key;
if (!value.price) {
@@ -8,4 +8,4 @@ export default function prefillAppearances (obj) {
}
});
return obj;
}
};
+1 -1
View File
@@ -1,7 +1,7 @@
import t from '../translation';
import prefill from './prefill.js';
export default prefill({
module.exports = prefill({
baseHair1: {setPrice: 5, text: t('hairSet1')},
baseHair2: {setPrice: 5, text: t('hairSet2')},
facialHair: {setPrice: 5, text: t('bodyFacialHair')},
+1 -1
View File
@@ -1,7 +1,7 @@
import sets from './sets.js';
import prefill from './prefill.js';
export default prefill({
module.exports = prefill({
black: {},
blue: {},
green: {},
+1 -1
View File
@@ -1,6 +1,6 @@
import prefill from './prefill.js';
export default prefill({
module.exports = prefill({
slim: {},
broad: {},
});
+1 -1
View File
@@ -1,7 +1,7 @@
import prefill from './prefill.js';
import sets from './sets.js';
export default prefill({
module.exports = prefill({
/* eslint-disable quote-props */
'ddc994': {},
'f5a76e': {},
+5 -9
View File
@@ -1,10 +1,8 @@
let t = require('./translation.js');
import t from './translation';
let NUMBER_OF_QUESTIONS = 12;
const NUMBER_OF_QUESTIONS = 12;
let faq = {};
faq.questions = [];
export const questions = [];
for (let i = 0; i <= NUMBER_OF_QUESTIONS; i++) {
let question = {
@@ -13,12 +11,10 @@ for (let i = 0; i <= NUMBER_OF_QUESTIONS; i++) {
web: t(`webFaqAnswer${i}`),
};
faq.questions.push(question);
questions.push(question);
}
faq.stillNeedHelp = {
export const stillNeedHelp = {
ios: t('iosFaqStillNeedHelp'),
web: t('webFaqStillNeedHelp'),
};
module.exports = faq;
+1 -1
View File
@@ -22,4 +22,4 @@ let armor = {
armoire: armoireArmor,
};
export default armor;
module.exports = armor;
+1 -1
View File
@@ -9,5 +9,5 @@ let back = {
special: specialBack,
};
export default back;
module.exports = back;
+1 -1
View File
@@ -7,5 +7,5 @@ let body = {
special: specialBody,
};
export default body;
module.exports = body;
+1 -1
View File
@@ -11,4 +11,4 @@ let eyewear = {
armoire: armoireEyewear,
};
export default eyewear;
module.exports = eyewear;
+1 -1
View File
@@ -9,5 +9,5 @@ let headAccessory = {
mystery: mysteryHeadAccessory,
};
export default headAccessory;
module.exports = headAccessory;
+1 -1
View File
@@ -22,4 +22,4 @@ let head = {
armoire: armoireHead,
};
export default head;
module.exports = head;
+1 -1
View File
@@ -78,7 +78,7 @@ each(GEAR_TYPES, (type) => {
});
});
export default {
module.exports = {
tree: gear,
flat,
};
+1 -1
View File
@@ -495,4 +495,4 @@ let armoireSet = {
weapon,
};
export default armoireSet;
module.exports = armoireSet;
+1 -1
View File
@@ -77,4 +77,4 @@ let baseSet = {
weapon,
};
export default baseSet;
module.exports = baseSet;
+1 -1
View File
@@ -155,4 +155,4 @@ let healerSet = {
weapon,
};
export default healerSet;
module.exports = healerSet;
+1 -1
View File
@@ -385,4 +385,4 @@ let mysterySet = {
weapon,
};
export default mysterySet;
module.exports = mysterySet;
+1 -1
View File
@@ -167,4 +167,4 @@ let rogueSet = {
weapon,
};
export default rogueSet;
module.exports = rogueSet;
@@ -1534,4 +1534,4 @@ let specialSet = {
weapon,
};
export default specialSet;
module.exports = specialSet;
@@ -90,4 +90,4 @@ let backerSet = {
weaponSpecial3,
};
export default backerSet;
module.exports = backerSet;
@@ -76,4 +76,4 @@ let contributorSet = {
weaponSpecialCritical,
};
export default contributorSet;
module.exports = contributorSet;
@@ -59,4 +59,4 @@ let wonderconSet = {
eyewearSpecialWonderconBlack,
};
export default wonderconSet;
module.exports = wonderconSet;
+1 -1
View File
@@ -152,4 +152,4 @@ let warriorSet = {
weapon,
};
export default warriorSet;
module.exports = warriorSet;
+1 -1
View File
@@ -138,4 +138,4 @@ let wizardSet = {
weapon,
};
export default wizardSet;
module.exports = wizardSet;
+1 -1
View File
@@ -26,4 +26,4 @@ let shield = {
armoire: armoireShield,
};
export default shield;
module.exports = shield;
+1 -1
View File
@@ -22,4 +22,4 @@ let weapon = {
armoire: armoireWeapon,
};
export default weapon;
module.exports = weapon;
+15 -18
View File
@@ -1,12 +1,6 @@
var _, api, calculateBonus, diminishingReturns, moment, t;
api = module.exports;
_ = require('lodash');
moment = require('moment');
t = require('./translation.js');
import _ from 'lodash';
import moment from 'moment';
import t from './translation';
import {
CLASSES,
@@ -16,6 +10,8 @@ import {
USER_CAN_OWN_QUEST_CATEGORIES,
} from './constants';
let api = module.exports;
import mysterySets from './mystery-sets';
import gear from './gear';
@@ -23,6 +19,7 @@ import gear from './gear';
import appearances from './appearance';
import backgrounds from './appearance/backgrounds.js'
import spells from './spells';
import faq from './faq';
api.mystery = mysterySets;
@@ -32,8 +29,8 @@ api.gear = gear;
api.spells = spells;
/*
Time Traveler Store, mystery sets need their items mapped in
*/
Time Traveler Store, mystery sets need their items mapped in
*/
_.each(api.mystery, function(v, k) {
return v.items = _.where(api.gear.flat, {
@@ -55,10 +52,10 @@ api.timeTravelerStore = function(owned) {
/*
---------------------------------------------------------------
Unique Rewards: Potion and Armoire
---------------------------------------------------------------
*/
---------------------------------------------------------------
Unique Rewards: Potion and Armoire
---------------------------------------------------------------
*/
api.potion = {
type: 'potion',
@@ -89,7 +86,7 @@ api.armoire = {
---------------------------------------------------------------
Classes
---------------------------------------------------------------
*/
*/
api.classes = CLASSES;
@@ -98,7 +95,7 @@ api.classes = CLASSES;
---------------------------------------------------------------
Gear Types
---------------------------------------------------------------
*/
*/
api.gearTypes = GEAR_TYPES;
@@ -2606,4 +2603,4 @@ api.userDefaults = {
]
};
api.faq = require('./faq.js');
api.faq = faq;
+2 -2
View File
@@ -1,5 +1,5 @@
import { each } from 'lodash';
let t = require('./translation.js');
import t from './translation';
let mysterySets = {
201402: {
@@ -122,4 +122,4 @@ each(mysterySets, (value, key) => {
value.text = t(`mysterySet${key}`);
});
export default mysterySets;
module.exports = mysterySets;
+1 -1
View File
@@ -506,4 +506,4 @@ _.each(spells, (spellClass) => {
});
});
export default spells;
module.exports = spells;
+2 -2
View File
@@ -1,6 +1,6 @@
import i18n from '../i18n';
export default function translator (string, vars = { a: 'a' }) {
module.exports = function translator (string, vars = { a: 'a' }) {
function func (lang) {
return i18n.t(string, vars, lang);
}
@@ -8,4 +8,4 @@ export default function translator (string, vars = { a: 'a' }) {
func.i18nLangFunc = true; // Trick to recognize this type of function
return func;
}
};
+1 -1
View File
@@ -67,7 +67,7 @@ function questsOfCategory (userQuests, category) {
return count;
}
export default {
module.exports = {
beastMasterProgress,
dropPetsCurrentlyOwned,
mountMasterProgress,
+1 -1
View File
@@ -60,4 +60,4 @@ function t (stringName) {
}
}
export default i18n;
module.exports = i18n;
+10 -11
View File
@@ -1,7 +1,10 @@
import moment from 'moment';
import _ from 'lodash';
import {
daysSince,
shouldDo,
} from '../../common/script/cron';
} from './cron';
import {
MAX_HEALTH,
MAX_LEVEL,
@@ -9,18 +12,13 @@ import {
} from './constants';
import * as statHelpers from './statHelpers';
var $w, _, api, content, i18n, preenHistory, moment, sortOrder,
var $w, preenHistory, sortOrder,
indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };
moment = require('moment');
import content from './content/index';
import i18n from './i18n';
_ = require('lodash');
content = require('./content/index');
i18n = require('./i18n');
api = module.exports = {};
let api = module.exports = {};
api.i18n = i18n;
api.shouldDo = shouldDo;
@@ -471,7 +469,8 @@ api.appliedTags = function(userTags, taskTags) {
Various counting functions
*/
api.count = require('./count');
import count from './count';
api.count = count;
/*