Skip to content

Commit

Permalink
title update
Browse files Browse the repository at this point in the history
  • Loading branch information
goldenratio committed Jun 30, 2019
1 parent b0af1a7 commit f3d6a1b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"typecheck": "tsc",
"build:legacy": "rollup -c rollup.config.js",
"deploy": "firebase deploy --project weather-sucks --token $FIREBASE_TOKEN"
"deploy": "firebase deploy --token $FIREBASE_TOKEN"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<meta name="msapplication-tap-highlight" content="no">
<meta name="description" content="Weather App - Does Weather Suck?">

<title>Weather App for Estonians</title>
<title>Weather App with Estonian Mood</title>
<link rel="manifest" href="./manifest.json">

<link rel="icon" sizes="128x128" href="./assets/icons/icon-128.png">
Expand Down
26 changes: 13 additions & 13 deletions src/legacy/polyfills.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
return store[key] || (store[key] = value !== undefined ? value : {});
})('versions', []).push({
version: '3.1.3',
mode: 'global',
mode: 'global',
copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
});
});
Expand Down Expand Up @@ -1638,7 +1638,7 @@
}

// Forced replacement object prototype accessors methods
var forcedObjectPrototypeAccessorsMethods = !fails(function () {
var forcedObjectPrototypeAccessorsMethods = !fails(function () {
var key = Math.random();
// In FF throws only define methods
// eslint-disable-next-line no-undef, no-useless-call
Expand Down Expand Up @@ -2483,7 +2483,7 @@
if (IteratorPrototype == undefined) { IteratorPrototype = {}; }

// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
if (!has(IteratorPrototype, ITERATOR$3)) { hide(IteratorPrototype, ITERATOR$3, returnThis); }
if ( !has(IteratorPrototype, ITERATOR$3)) { hide(IteratorPrototype, ITERATOR$3, returnThis); }

var iteratorsCore = {
IteratorPrototype: IteratorPrototype,
Expand Down Expand Up @@ -2542,7 +2542,7 @@
if (anyNativeIterator) {
CurrentIteratorPrototype = objectGetPrototypeOf(anyNativeIterator.call(new Iterable()));
if (IteratorPrototype$2 !== Object.prototype && CurrentIteratorPrototype.next) {
if (objectGetPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype$2) {
if ( objectGetPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype$2) {
if (objectSetPrototypeOf) {
objectSetPrototypeOf(CurrentIteratorPrototype, IteratorPrototype$2);
} else if (typeof CurrentIteratorPrototype[ITERATOR$4] != 'function') {
Expand All @@ -2561,7 +2561,7 @@
}

// define iterator
if (IterablePrototype[ITERATOR$4] !== defaultIterator) {
if ( IterablePrototype[ITERATOR$4] !== defaultIterator) {
hide(IterablePrototype, ITERATOR$4, defaultIterator);
}
iterators[NAME] = defaultIterator;
Expand Down Expand Up @@ -3069,11 +3069,11 @@
}
S = String(O);
rx = new RegExp(regexp, 'g');
return rx[MATCH_ALL](S);
return rx[MATCH_ALL](S);
}
});

MATCH_ALL in RegExpPrototype || hide(RegExpPrototype, MATCH_ALL, $matchAll);
MATCH_ALL in RegExpPrototype || hide(RegExpPrototype, MATCH_ALL, $matchAll);

// `String.prototype.repeat` method implementation
// https://tc39.github.io/ecma262/#sec-string.prototype.repeat
Expand Down Expand Up @@ -4964,7 +4964,7 @@
};

// wrap fetch result
if (typeof $fetch == 'function') { _export({ global: true, enumerable: true, forced: true }, {
if ( typeof $fetch == 'function') { _export({ global: true, enumerable: true, forced: true }, {
// eslint-disable-next-line no-unused-vars
fetch: function fetch(input) {
return promiseResolve(PromiseConstructor, $fetch.apply(global_1, arguments));
Expand Down Expand Up @@ -4992,11 +4992,11 @@
}
});

_export({ target: PROMISE, stat: true, forced: FORCED$e }, {
_export({ target: PROMISE, stat: true, forced: FORCED$e }, {
// `Promise.resolve` method
// https://tc39.github.io/ecma262/#sec-promise.resolve
resolve: function resolve(x) {
return promiseResolve(this, x);
return promiseResolve( this, x);
}
});

Expand Down Expand Up @@ -8839,7 +8839,7 @@
}
});

var getMapIterator = function (it) {
var getMapIterator = function (it) {
// eslint-disable-next-line no-undef
return Map.prototype.entries.call(it);
};
Expand Down Expand Up @@ -9054,7 +9054,7 @@
}
});

var getSetIterator = function (it) {
var getSetIterator = function (it) {
// eslint-disable-next-line no-undef
return Set.prototype.values.call(it);
};
Expand Down Expand Up @@ -9935,7 +9935,7 @@
}
});

REPLACE_ALL in RegExpPrototype$3 || hide(RegExpPrototype$3, REPLACE_ALL, $replaceAll);
REPLACE_ALL in RegExpPrototype$3 || hide(RegExpPrototype$3, REPLACE_ALL, $replaceAll);

// `Symbol.replaceAll` well-known symbol
// https://tc39.github.io/proposal-string-replaceall/
Expand Down
2 changes: 1 addition & 1 deletion src/service-worker.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @ts-nocheck
// having issues with ServiceWorker types

const version = '25.0.0'; // version needs to be updated manually for now
const version = '26.0.0'; // version needs to be updated manually for now
const projectName = 'weather-sucks';
const preCacheName = `${projectName}-precache-${version}`;
const runtimeCacheName = `${projectName}-runtimeCache-${version}`;
Expand Down

0 comments on commit f3d6a1b

Please sign in to comment.