Remove logger; ignore entrypoint files; call maybeRunLocalstorageMigration();

pull/610/head
Rick Carlino 2018-01-10 09:27:06 -06:00
parent 4d432c898d
commit 5e442502fb
3 changed files with 5 additions and 1 deletions

View File

@ -4,3 +4,5 @@ webpack/**/*test*.tsx
**__test**
**__tests__**
**test**
webpack/entry.tsx
webpack/password_reset/index.tsx

View File

@ -14,7 +14,6 @@ function whatever() {
return store[key];
},
setItem(key, value) {
console.log(`Set ${key} to ${value} = = = =`);
store[key] = value.toString();
},
removeItem(key) {

View File

@ -7,9 +7,12 @@ import { detectLanguage } from "./i18n";
import { stopIE, shortRevision } from "./util";
import { init } from "i18next";
import { attachAppToDom } from "./routes";
import { maybeRunLocalstorageMigration } from "./storage_key_translator";
stopIE();
console.log(shortRevision());
maybeRunLocalstorageMigration();
detectLanguage().then(config => init(config, attachAppToDom));