diff --git a/webapp/.github/CODEOWNERS b/.github/CODEOWNERS similarity index 100% rename from webapp/.github/CODEOWNERS rename to .github/CODEOWNERS diff --git a/webapp/.gitignore b/.gitignore similarity index 100% rename from webapp/.gitignore rename to .gitignore diff --git a/webapp/.travis.yml b/.travis.yml similarity index 100% rename from webapp/.travis.yml rename to .travis.yml diff --git a/firebase.json b/firebase.json index 93fb369a..04149a03 100644 --- a/firebase.json +++ b/firebase.json @@ -1,6 +1,6 @@ { "hosting": { - "public": "public", + "public": "build/es6-bundled", "ignore": [ "firebase.json", "**/.*", diff --git a/webapp/gulpfile.js b/gulpfile.js similarity index 100% rename from webapp/gulpfile.js rename to gulpfile.js diff --git a/webapp/images/favicon.ico b/images/favicon.ico similarity index 100% rename from webapp/images/favicon.ico rename to images/favicon.ico diff --git a/webapp/images/manifest/icon-144x144.png b/images/manifest/icon-144x144.png similarity index 100% rename from webapp/images/manifest/icon-144x144.png rename to images/manifest/icon-144x144.png diff --git a/webapp/images/manifest/icon-192x192.png b/images/manifest/icon-192x192.png similarity index 100% rename from webapp/images/manifest/icon-192x192.png rename to images/manifest/icon-192x192.png diff --git a/webapp/images/manifest/icon-48x48.png b/images/manifest/icon-48x48.png similarity index 100% rename from webapp/images/manifest/icon-48x48.png rename to images/manifest/icon-48x48.png diff --git a/webapp/images/manifest/icon-512x512.png b/images/manifest/icon-512x512.png similarity index 100% rename from webapp/images/manifest/icon-512x512.png rename to images/manifest/icon-512x512.png diff --git a/webapp/images/manifest/icon-72x72.png b/images/manifest/icon-72x72.png similarity index 100% rename from webapp/images/manifest/icon-72x72.png rename to images/manifest/icon-72x72.png diff --git a/webapp/images/manifest/icon-96x96.png b/images/manifest/icon-96x96.png similarity index 100% rename from webapp/images/manifest/icon-96x96.png rename to images/manifest/icon-96x96.png diff --git a/webapp/index.html b/index.html similarity index 100% rename from webapp/index.html rename to index.html diff --git a/public/index.html b/legacy_webapp/index.html similarity index 100% rename from public/index.html rename to legacy_webapp/index.html diff --git a/public/main.js b/legacy_webapp/main.js similarity index 100% rename from public/main.js rename to legacy_webapp/main.js diff --git a/public/slides.json b/legacy_webapp/slides.json similarity index 100% rename from public/slides.json rename to legacy_webapp/slides.json diff --git a/webapp/manifest.json b/manifest.json similarity index 100% rename from webapp/manifest.json rename to manifest.json diff --git a/webapp/package-lock.json b/package-lock.json similarity index 100% rename from webapp/package-lock.json rename to package-lock.json diff --git a/webapp/package.json b/package.json similarity index 100% rename from webapp/package.json rename to package.json diff --git a/webapp/polymer.json b/polymer.json similarity index 100% rename from webapp/polymer.json rename to polymer.json diff --git a/webapp/push-manifest.json b/push-manifest.json similarity index 100% rename from webapp/push-manifest.json rename to push-manifest.json diff --git a/webapp/server/app.yaml b/server/app.yaml similarity index 100% rename from webapp/server/app.yaml rename to server/app.yaml diff --git a/webapp/server/package-lock.json b/server/package-lock.json similarity index 100% rename from webapp/server/package-lock.json rename to server/package-lock.json diff --git a/webapp/server/package.json b/server/package.json similarity index 100% rename from webapp/server/package.json rename to server/package.json diff --git a/webapp/service-worker.js b/service-worker.js similarity index 100% rename from webapp/service-worker.js rename to service-worker.js diff --git a/webapp/src/actions/app.js b/src/actions/app.js similarity index 100% rename from webapp/src/actions/app.js rename to src/actions/app.js diff --git a/webapp/src/actions/data.js b/src/actions/data.js similarity index 100% rename from webapp/src/actions/data.js rename to src/actions/data.js diff --git a/webapp/src/actions/database.js b/src/actions/database.js similarity index 100% rename from webapp/src/actions/database.js rename to src/actions/database.js diff --git a/webapp/src/actions/editor.js b/src/actions/editor.js similarity index 100% rename from webapp/src/actions/editor.js rename to src/actions/editor.js diff --git a/webapp/src/actions/maintenance.js b/src/actions/maintenance.js similarity index 100% rename from webapp/src/actions/maintenance.js rename to src/actions/maintenance.js diff --git a/webapp/src/actions/user.js b/src/actions/user.js similarity index 100% rename from webapp/src/actions/user.js rename to src/actions/user.js diff --git a/webapp/src/components/base-card.js b/src/components/base-card.js similarity index 100% rename from webapp/src/components/base-card.js rename to src/components/base-card.js diff --git a/webapp/src/components/button-shared-styles.js b/src/components/button-shared-styles.js similarity index 100% rename from webapp/src/components/button-shared-styles.js rename to src/components/button-shared-styles.js diff --git a/webapp/src/components/card-drawer.js b/src/components/card-drawer.js similarity index 100% rename from webapp/src/components/card-drawer.js rename to src/components/card-drawer.js diff --git a/webapp/src/components/card-editor.js b/src/components/card-editor.js similarity index 100% rename from webapp/src/components/card-editor.js rename to src/components/card-editor.js diff --git a/webapp/src/components/card-renderer.js b/src/components/card-renderer.js similarity index 100% rename from webapp/src/components/card-renderer.js rename to src/components/card-renderer.js diff --git a/webapp/src/components/card-thumbnail.js b/src/components/card-thumbnail.js similarity index 100% rename from webapp/src/components/card-thumbnail.js rename to src/components/card-thumbnail.js diff --git a/webapp/src/components/card-view.js b/src/components/card-view.js similarity index 100% rename from webapp/src/components/card-view.js rename to src/components/card-view.js diff --git a/webapp/src/components/compendium-app.js b/src/components/compendium-app.js similarity index 100% rename from webapp/src/components/compendium-app.js rename to src/components/compendium-app.js diff --git a/webapp/src/components/content-card.js b/src/components/content-card.js similarity index 100% rename from webapp/src/components/content-card.js rename to src/components/content-card.js diff --git a/webapp/src/components/maintenance-view.js b/src/components/maintenance-view.js similarity index 100% rename from webapp/src/components/maintenance-view.js rename to src/components/maintenance-view.js diff --git a/webapp/src/components/my-icons.js b/src/components/my-icons.js similarity index 100% rename from webapp/src/components/my-icons.js rename to src/components/my-icons.js diff --git a/webapp/src/components/my-view404.js b/src/components/my-view404.js similarity index 100% rename from webapp/src/components/my-view404.js rename to src/components/my-view404.js diff --git a/webapp/src/components/page-view-element.js b/src/components/page-view-element.js similarity index 100% rename from webapp/src/components/page-view-element.js rename to src/components/page-view-element.js diff --git a/webapp/src/components/section-head-card.js b/src/components/section-head-card.js similarity index 100% rename from webapp/src/components/section-head-card.js rename to src/components/section-head-card.js diff --git a/webapp/src/components/shared-styles.js b/src/components/shared-styles.js similarity index 100% rename from webapp/src/components/shared-styles.js rename to src/components/shared-styles.js diff --git a/webapp/src/components/snack-bar.js b/src/components/snack-bar.js similarity index 100% rename from webapp/src/components/snack-bar.js rename to src/components/snack-bar.js diff --git a/webapp/src/components/user-chip.js b/src/components/user-chip.js similarity index 100% rename from webapp/src/components/user-chip.js rename to src/components/user-chip.js diff --git a/webapp/src/data/cards.json b/src/data/cards.json similarity index 100% rename from webapp/src/data/cards.json rename to src/data/cards.json diff --git a/webapp/src/reducers/app.js b/src/reducers/app.js similarity index 100% rename from webapp/src/reducers/app.js rename to src/reducers/app.js diff --git a/webapp/src/reducers/data.js b/src/reducers/data.js similarity index 100% rename from webapp/src/reducers/data.js rename to src/reducers/data.js diff --git a/webapp/src/reducers/editor.js b/src/reducers/editor.js similarity index 100% rename from webapp/src/reducers/editor.js rename to src/reducers/editor.js diff --git a/webapp/src/reducers/user.js b/src/reducers/user.js similarity index 100% rename from webapp/src/reducers/user.js rename to src/reducers/user.js diff --git a/webapp/src/store.js b/src/store.js similarity index 100% rename from webapp/src/store.js rename to src/store.js diff --git a/webapp/sw-precache-config.js b/sw-precache-config.js similarity index 100% rename from webapp/sw-precache-config.js rename to sw-precache-config.js diff --git a/webapp/test/integration/router.js b/test/integration/router.js similarity index 100% rename from webapp/test/integration/router.js rename to test/integration/router.js diff --git a/webapp/test/integration/screenshots-baseline/narrow/batmanNotAView.png b/test/integration/screenshots-baseline/narrow/batmanNotAView.png similarity index 100% rename from webapp/test/integration/screenshots-baseline/narrow/batmanNotAView.png rename to test/integration/screenshots-baseline/narrow/batmanNotAView.png diff --git a/webapp/test/integration/screenshots-baseline/narrow/index.png b/test/integration/screenshots-baseline/narrow/index.png similarity index 100% rename from webapp/test/integration/screenshots-baseline/narrow/index.png rename to test/integration/screenshots-baseline/narrow/index.png diff --git a/webapp/test/integration/screenshots-baseline/narrow/view1.png b/test/integration/screenshots-baseline/narrow/view1.png similarity index 100% rename from webapp/test/integration/screenshots-baseline/narrow/view1.png rename to test/integration/screenshots-baseline/narrow/view1.png diff --git a/webapp/test/integration/screenshots-baseline/narrow/view2.png b/test/integration/screenshots-baseline/narrow/view2.png similarity index 100% rename from webapp/test/integration/screenshots-baseline/narrow/view2.png rename to test/integration/screenshots-baseline/narrow/view2.png diff --git a/webapp/test/integration/screenshots-baseline/narrow/view3.png b/test/integration/screenshots-baseline/narrow/view3.png similarity index 100% rename from webapp/test/integration/screenshots-baseline/narrow/view3.png rename to test/integration/screenshots-baseline/narrow/view3.png diff --git a/webapp/test/integration/screenshots-baseline/regenerate.js b/test/integration/screenshots-baseline/regenerate.js similarity index 100% rename from webapp/test/integration/screenshots-baseline/regenerate.js rename to test/integration/screenshots-baseline/regenerate.js diff --git a/webapp/test/integration/screenshots-baseline/wide/batmanNotAView.png b/test/integration/screenshots-baseline/wide/batmanNotAView.png similarity index 100% rename from webapp/test/integration/screenshots-baseline/wide/batmanNotAView.png rename to test/integration/screenshots-baseline/wide/batmanNotAView.png diff --git a/webapp/test/integration/screenshots-baseline/wide/index.png b/test/integration/screenshots-baseline/wide/index.png similarity index 100% rename from webapp/test/integration/screenshots-baseline/wide/index.png rename to test/integration/screenshots-baseline/wide/index.png diff --git a/webapp/test/integration/screenshots-baseline/wide/view1.png b/test/integration/screenshots-baseline/wide/view1.png similarity index 100% rename from webapp/test/integration/screenshots-baseline/wide/view1.png rename to test/integration/screenshots-baseline/wide/view1.png diff --git a/webapp/test/integration/screenshots-baseline/wide/view2.png b/test/integration/screenshots-baseline/wide/view2.png similarity index 100% rename from webapp/test/integration/screenshots-baseline/wide/view2.png rename to test/integration/screenshots-baseline/wide/view2.png diff --git a/webapp/test/integration/screenshots-baseline/wide/view3.png b/test/integration/screenshots-baseline/wide/view3.png similarity index 100% rename from webapp/test/integration/screenshots-baseline/wide/view3.png rename to test/integration/screenshots-baseline/wide/view3.png diff --git a/webapp/test/integration/visual.js b/test/integration/visual.js similarity index 100% rename from webapp/test/integration/visual.js rename to test/integration/visual.js diff --git a/webapp/test/unit/counter-element.html b/test/unit/counter-element.html similarity index 100% rename from webapp/test/unit/counter-element.html rename to test/unit/counter-element.html diff --git a/webapp/test/unit/index.html b/test/unit/index.html similarity index 100% rename from webapp/test/unit/index.html rename to test/unit/index.html diff --git a/webapp/test/unit/views-a11y.html b/test/unit/views-a11y.html similarity index 100% rename from webapp/test/unit/views-a11y.html rename to test/unit/views-a11y.html diff --git a/webapp/wct.conf.json b/wct.conf.json similarity index 100% rename from webapp/wct.conf.json rename to wct.conf.json