Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Jameskmonger/creature-chess
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 71907f533e37eb5964218b4e1f49f5554dd7a962
Choose a base ref
..
head repository: Jameskmonger/creature-chess
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d0433b3cf667ddd9d77591f79f27f54f2418d97e
Choose a head ref
Showing with 22,350 additions and 25,913 deletions.
  1. +0 −29 .auth0/rules/attach-metadata.js
  2. +1 −1 .dockerignore
  3. +1 −0 .prettierignore
  4. +0 −768 .yarn/releases/yarn-3.1.1.cjs
  5. +873 −0 .yarn/releases/yarn-3.4.1.cjs
  6. +1 −1 .yarnrc.yml
  7. +3 −16 README.md
  8. +2 −3 apps/Dockerfile
  9. +183 −0 apps/server-info/index.ts
  10. +34 −0 apps/server-info/package.json
  11. +23 −0 apps/server-info/src/log.ts
  12. 0 {lambda/user/src/libs → apps/server-info/src/util}/auth0.ts
  13. 0 {lambda/user/src/libs → apps/server-info/src/util}/sanitize-user.ts
  14. +8 −0 apps/server-info/tsconfig.json
  15. +1 −0 apps/web-game/src/game/board/overlays/controls/Controls.tsx
  16. +1 −1 apps/web-game/src/game/board/overlays/controls/ReadyUpButton.tsx
  17. +1 −1 apps/web-game/src/game/layouts/mobile/MobileGame.tsx
  18. +60 −3 apps/web-menu/src/app.tsx
  19. +10 −0 apps/web-menu/src/getUser.ts
  20. +2 −2 apps/web-menu/webpack.config.js
  21. +26 −3 docker-compose.yml
  22. +0 −2 lambda/user/.env.dev
  23. +0 −12 lambda/user/.gitignore
  24. +0 −1 lambda/user/.nvmrc
  25. +0 −18 lambda/user/README.md
  26. +0 −2 lambda/user/handler.ts
  27. +0 −41 lambda/user/package.json
  28. +0 −60 lambda/user/plugins/offline-invalidate.js
  29. +0 −88 lambda/user/serverless.yml
  30. +0 −52 lambda/user/src/functions/getCurrentUser/handler.ts
  31. +0 −20 lambda/user/src/functions/getCurrentUser/index.ts
  32. +0 −7 lambda/user/src/functions/getCurrentUser/mock.json
  33. +0 −7 lambda/user/src/functions/getCurrentUser/schema.ts
  34. +0 −2 lambda/user/src/functions/index.ts
  35. +0 −199 lambda/user/src/functions/updateCurrentUser/handler.ts
  36. +0 −20 lambda/user/src/functions/updateCurrentUser/index.ts
  37. +0 −7 lambda/user/src/functions/updateCurrentUser/mock.json
  38. +0 −7 lambda/user/src/functions/updateCurrentUser/schema.ts
  39. +0 −26 lambda/user/src/libs/api-gateway.ts
  40. +0 −3 lambda/user/src/libs/handler-resolver.ts
  41. +0 −6 lambda/user/src/libs/lambda.ts
  42. +0 −24 lambda/user/tsconfig.json
  43. +0 −10 lambda/user/tsconfig.paths.json
  44. +11 −24 modules/@creature-chess/auth-server/src/authenticate.ts
  45. +0 −1 modules/@creature-chess/auth-web/index.ts
  46. +0 −12 modules/@creature-chess/auth-web/isRegistered.ts
  47. +1 −0 modules/@creature-chess/data/src/constants.ts
  48. +43 −11 modules/@creature-chess/data/src/user/_setup.ts
  49. +18 −0 modules/@creature-chess/data/src/user/getByAuthId.ts
  50. +4 −0 modules/@creature-chess/data/src/user/index.ts
  51. +5 −0 modules/@creature-chess/gamemode/src/game/match.ts
  52. +7 −1 modules/@shoki/card-deck/index.ts
  53. +14 −1 nginx/local-dev/nginx.conf
  54. +5 −2 package.json
  55. +21,012 −24,419 yarn.lock
29 changes: 0 additions & 29 deletions .auth0/rules/attach-metadata.js

This file was deleted.

2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -2,4 +2,4 @@ node_modules
npm-debug.log
terraform/
public/
.faundb/
.faunadb/
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -3,3 +3,4 @@ apps/**/public/
yarn.lock
*.tfstate
.auth0
.faunadb/
Loading