Skip to content

Commit 1dd645f

Browse files
committed
fix types
1 parent defbde0 commit 1dd645f

File tree

5 files changed

+17
-2
lines changed

5 files changed

+17
-2
lines changed

packages/e2e-tests/test-applications/create-react-app/test-recipe.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
"testApplicationName": "create-react-app",
44
"buildCommand": "pnpm install && pnpm build",
55
"tests": [],
6+
"versions": [
7+
{
8+
"dependencyOverrides": {
9+
"typescript": "3.8.4"
10+
}
11+
}
12+
],
613
"canaryVersions": [
714
{
815
"dependencyOverrides": {

packages/e2e-tests/test-applications/node-express-app/test-recipe.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,12 @@
88
"testCommand": "pnpm test",
99
"timeoutSeconds": 60
1010
}
11+
],
12+
"versions": [
13+
{
14+
"dependencyOverrides": {
15+
"typescript": "3.8.4"
16+
}
17+
}
1118
]
1219
}

packages/node-integration-tests/utils/run-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const workers = os.cpus().map(async (_, i) => {
1313
while (testPaths.length > 0) {
1414
const testPath = testPaths.pop();
1515
console.log(`(Worker ${i}) Running test "${testPath}"`);
16-
await new Promise(resolve => {
16+
await new Promise<void>(resolve => {
1717
const jestProcess = childProcess.spawn('jest', ['--runTestsByPath', testPath as string, '--forceExit']);
1818

1919
// We're collecting the output and logging it all at once instead of inheriting stdout and stderr, so that

packages/replay/.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ demo/build/
44
# TODO: Check if we can re-introduce linting in demo
55
demo
66
metrics
7+
src/types

yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26281,7 +26281,7 @@ tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0:
2628126281
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
2628226282
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
2628326283

26284-
tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.2.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0:
26284+
tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.2.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, "tslib@^2.4.1 || ^1.9.3":
2628526285
version "2.5.2"
2628626286
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.2.tgz#1b6f07185c881557b0ffa84b111a0106989e8338"
2628726287
integrity sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==

0 commit comments

Comments
 (0)