From 5746d3b3d00ac80f82a59957d36feeddc64690c3 Mon Sep 17 00:00:00 2001 From: Kichiyaki Date: Sat, 12 Jun 2021 07:26:55 +0200 Subject: [PATCH] chore: bump parcel from 1.12.4 to 2.0.0-beta.2 --- .gitignore | 4 +- dist/bonusBarbarianVillageFinder.js | 607 +- dist/commandRenamer.js | 269 +- dist/dailyAchievements.js | 5563 +++++++----------- dist/extendedMapPopup.js | 1361 ++--- dist/extendedPlayerProfile.js | 2597 ++++---- dist/extendedTribeProfile.js | 3356 +++++------ dist/extendedVillageProfile.js | 1897 +++--- dist/inADayTribeRankingGenerator.js | 529 +- dist/latestEnnoblements.js | 1014 ++-- dist/mapCoordsPicker.js | 763 +-- dist/quickbar/bonusBarbarianVillageFinder.js | 14 +- dist/quickbar/commandRenamer.js | 8 +- dist/quickbar/dailyAchievements.js | 84 +- dist/quickbar/extendedMapPopup.js | 36 +- dist/quickbar/extendedPlayerProfile.js | 54 +- dist/quickbar/extendedTribeProfile.js | 60 +- dist/quickbar/extendedVillageProfile.js | 44 +- dist/quickbar/inADayTribeRankingGenerator.js | 12 +- dist/quickbar/latestEnnoblements.js | 22 +- dist/quickbar/mapCoordsPicker.js | 8 +- dist/quickbar/warStatsGenerator.js | 16 +- dist/warStatsGenerator.js | 754 +-- package.json | 11 +- src/commandRenamer.js | 5 +- src/extendedPlayerProfile.js | 5 +- src/extendedTribeProfile.js | 5 +- src/latestEnnoblements.js | 7 +- yarn.lock | 3851 +++++++----- 29 files changed, 9547 insertions(+), 13409 deletions(-) diff --git a/.gitignore b/.gitignore index 33bb6d4..33b9eac 100644 --- a/.gitignore +++ b/.gitignore @@ -67,4 +67,6 @@ yarn-error.log # Yarn Integrity file .yarn-integrity -.idea \ No newline at end of file +.idea + +.parcel-cache diff --git a/dist/bonusBarbarianVillageFinder.js b/dist/bonusBarbarianVillageFinder.js index c185e05..77541b2 100644 --- a/dist/bonusBarbarianVillageFinder.js +++ b/dist/bonusBarbarianVillageFinder.js @@ -1,400 +1,211 @@ -// modules are defined as an array -// [ module function, map of requires ] -// -// map of requires is short require name -> numeric require -// -// anything defined in a previous bundle is accessed via the -// orig method which is the require for previous bundles -parcelRequire = (function (modules, cache, entry, globalName) { - // Save the require from previous bundle to this closure if any - var previousRequire = typeof parcelRequire === 'function' && parcelRequire; - var nodeRequire = typeof require === 'function' && require; - - function newRequire(name, jumped) { - if (!cache[name]) { - if (!modules[name]) { - // if we cannot find the module within our internal map or - // cache jump to the current global require ie. the last bundle - // that was added to the page. - var currentRequire = typeof parcelRequire === 'function' && parcelRequire; - if (!jumped && currentRequire) { - return currentRequire(name, true); - } - - // If there are other bundles on this page the require from the - // previous one is saved to 'previousRequire'. Repeat this as - // many times as there are bundles until the module is found or - // we exhaust the require chain. - if (previousRequire) { - return previousRequire(name, true); - } - - // Try the node require function if it exists. - if (nodeRequire && typeof name === 'string') { - return nodeRequire(name); - } - - var err = new Error('Cannot find module \'' + name + '\''); - err.code = 'MODULE_NOT_FOUND'; - throw err; - } - - localRequire.resolve = resolve; - localRequire.cache = {}; - - var module = cache[name] = new newRequire.Module(name); - - modules[name][0].call(module.exports, localRequire, module, module.exports, this); - } - - return cache[name].exports; - - function localRequire(x){ - return newRequire(localRequire.resolve(x)); - } - - function resolve(x){ - return modules[name][1][x] || x; - } - } - - function Module(moduleName) { - this.id = moduleName; - this.bundle = newRequire; - this.exports = {}; - } - - newRequire.isParcelRequire = true; - newRequire.Module = Module; - newRequire.modules = modules; - newRequire.cache = cache; - newRequire.parent = previousRequire; - newRequire.register = function (id, exports) { - modules[id] = [function (require, module) { - module.exports = exports; - }, {}]; - }; - - var error; - for (var i = 0; i < entry.length; i++) { - try { - newRequire(entry[i]); - } catch (e) { - // Save first error but execute all entries - if (!error) { - error = e; - } - } - } - - if (entry.length) { - // Expose entry point to Node, AMD or browser globals - // Based on https://github.com/ForbesLindesay/umd/blob/master/template.js - var mainExports = newRequire(entry[entry.length - 1]); - - // CommonJS - if (typeof exports === "object" && typeof module !== "undefined") { - module.exports = mainExports; - - // RequireJS - } else if (typeof define === "function" && define.amd) { - define(function () { - return mainExports; - }); - - //