dependency upgrades, server and platform module updates, linting wip

This commit is contained in:
William Welling
2017-07-12 14:33:16 -05:00
parent afc39022f8
commit c08f5c672b
190 changed files with 6321 additions and 4703 deletions

View File

@@ -1,7 +1,7 @@
// Our API for demos only
export const fakeDataBase = {
get() {
let res = { data: 'This fake data came from the db on the server.' };
const res = { data: 'This fake data came from the db on the server.' };
return Promise.resolve(res);
}
};