Skip to content

Commit c6c78ce

Browse files
committed
disable cache to build
1 parent ad2bde3 commit c6c78ce

File tree

7 files changed

+19
-85
lines changed

7 files changed

+19
-85
lines changed

packages/api/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"pg-hstore": "^2.3.4",
6161
"prettier": "^2.5.1",
6262
"reflect-metadata": "^0.1.13",
63-
"sequelize-typescript": "^2.1.2"
63+
"sequelize-typescript": "^2.1.2",
64+
"typescript": "^4"
6465
}
6566
}

packages/api/src/migrations/20210817153722-create-countries.ts

Lines changed: 0 additions & 75 deletions
This file was deleted.

packages/api/tsconfig.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111
"skipLibCheck": true,
1212
"forceConsistentCasingInFileNames": true
1313
},
14+
"exclude": [
15+
"node_modules",
16+
"./node_modules",
17+
"./node_modules/*",
18+
"./node_modules/@types/node/index.d.ts",
19+
],
1420
"include": [
1521
"src"
1622
]

packages/web/i18n/de.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export const de = {
88
},
99
t: {
1010
searchingPlayers: 'Suche nach Spielern...',
11+
searchingForPlayers: 'Suche offenen Spielen...',
1112
wePlay: 'Wir spielen',
1213
copyLinkAndGo:
1314
'Einfach den Link hier kopieren und an deine Freunde schicken.',
@@ -88,7 +89,7 @@ export const de = {
8889
europe: 'Europa',
8990
oceania: 'Ozeanien',
9091
},
91-
directMatchesOnly: 'Nur direkte Treffer',
92+
directMatchesOnly: 'Nur direkte Treffer zählen',
9293
suddenDeath: 'Episches Finale',
9394
borders: 'Ländergrenzen',
9495
noIslands: 'Keine Inseln',

packages/web/i18n/en.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export const en = {
7878
europe: 'Europe',
7979
oceania: 'Oceania',
8080
},
81-
directMatchesOnly: 'Direct matches only',
81+
directMatchesOnly: 'Only direct matches count',
8282
suddenDeath: 'Epic Finale',
8383
borders: 'Country borders',
8484
roundTime: 'Time per Round',
@@ -129,7 +129,7 @@ export const en = {
129129
cta: 'create game',
130130
},
131131
matchmaking: {
132-
searchingPlayers: 'Looking for players...',
132+
searchingForPlayers: 'Looking for open games...',
133133
button: 'Quick Match',
134134
cta: 'Quick match',
135135
title: 'Search for game',

tsconfig.base.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212
"suppressImplicitAnyIndexErrors": true,
1313
"lib": ["es2016", "dom"],
1414
"target": "es6",
15+
"exclude": [
16+
"packages/api/node_modules",
17+
"packages/api/node_modules",
18+
"packages/api/node_modules/*",
19+
"packages/api/node_modules/@types/node/index.d.ts",
20+
],
1521
"typeRoots": ["./node_modules/@types"],
1622
"moduleResolution": "node",
1723
"strictPropertyInitialization": false,

yarn.lock

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15322,17 +15322,12 @@ typedarray@^0.0.6:
1532215322
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
1532315323
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
1532415324

15325-
typescript@3.4.5:
15326-
version "3.4.5"
15327-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.4.5.tgz#2d2618d10bb566572b8d7aad5180d84257d70a99"
15328-
integrity sha512-YycBxUb49UUhdNMU5aJ7z5Ej2XGmaIBL0x34vZ82fn3hGvD+bgrMrVDpatgz2f7YxUMJxMkbWxJZeAvDxVe7Vw==
15329-
1533015325
typescript@^3.5.3:
1533115326
version "3.9.10"
1533215327
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8"
1533315328
integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==
1533415329

15335-
typescript@^4.3.5:
15330+
typescript@^4, typescript@^4.3.5:
1533615331
version "4.9.5"
1533715332
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
1533815333
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==

0 commit comments

Comments
 (0)