chore: @node/types -> 16.x

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-03-31 21:12:46 +02:00
parent 8aeb703cc9
commit 2538bf72e3
68 changed files with 84 additions and 85 deletions
+1 -1
View File
@@ -51,7 +51,7 @@
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/react": "^16.13.1 || ^17.0.0"
},
"files": [
+1 -1
View File
@@ -84,7 +84,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/jquery": "^3.3.34",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/react-dom": "*",
"@types/zen-observable": "^0.8.0",
"cross-env": "^7.0.0",
+1 -1
View File
@@ -137,7 +137,7 @@
"@types/inquirer": "^8.1.3",
"@types/minimatch": "^3.0.5",
"@types/mock-fs": "^4.13.0",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/npm-packlist": "^3.0.0",
"@types/recursive-readdir": "^2.2.0",
"@types/rollup-plugin-peer-deps-external": "^2.2.0",
+1 -1
View File
@@ -41,7 +41,7 @@
},
"devDependencies": {
"@types/jscodeshift": "^0.11.0",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"commander": "^6.1.0",
"ts-node": "^10.0.0"
},
+1 -1
View File
@@ -54,7 +54,7 @@
"@types/jest": "^26.0.7",
"@types/json-schema-merge-allof": "^0.6.0",
"@types/mock-fs": "^4.10.0",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/yup": "^0.29.13",
"mock-fs": "^5.1.0",
"msw": "^0.35.0"
+1 -1
View File
@@ -56,7 +56,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/zen-observable": "^0.8.0",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -93,7 +93,7 @@
"@types/dagre": "^0.7.44",
"@types/google-protobuf": "^3.7.2",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/react-helmet": "^6.1.0",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/react-virtualized-auto-sizer": "^1.0.1",
+1 -1
View File
@@ -54,7 +54,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/prop-types": "^15.7.3",
"@types/zen-observable": "^0.8.0",
"cross-fetch": "^3.1.5",
+1 -1
View File
@@ -45,7 +45,7 @@
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^8.1.3",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/recursive-readdir": "^2.2.0",
"mock-fs": "^5.1.1",
"ts-node": "^10.0.0"
+1 -1
View File
@@ -32,7 +32,7 @@
"@backstage/cli-common": "^0.1.8",
"@backstage/errors": "^1.0.0",
"@types/fs-extra": "^9.0.1",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/puppeteer": "^5.4.4",
"chalk": "^4.0.0",
"commander": "^6.1.0",
+6 -4
View File
@@ -372,8 +372,9 @@ async function testAppServe(pluginName: string, appDir: string) {
}
} finally {
// Kill entire process group, otherwise we'll end up with hanging serve processes
await new Promise<void>((res, rej) =>
killTree(startApp.pid, err => (err ? rej(err) : res())),
await new Promise<void>(
(res, rej) =>
startApp.pid && killTree(startApp.pid, err => (err ? rej(err) : res())),
);
}
@@ -477,8 +478,9 @@ async function testBackendStart(appDir: string, isPostgres: boolean) {
} finally {
print('Stopping the child process');
// Kill entire process group, otherwise we'll end up with hanging serve processes
await new Promise<void>((res, rej) =>
killTree(child.pid, err => (err ? rej(err) : res())),
await new Promise<void>(
(res, rej) =>
child.pid && killTree(child.pid, err => (err ? rej(err) : res())),
);
}
+1 -1
View File
@@ -45,7 +45,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"msw": "^0.35.0",
"cross-fetch": "^3.1.5"
},
@@ -34,7 +34,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/react-dom": "*",
"cross-env": "^7.0.0",
"cypress": "^9.5.0",
+1 -1
View File
@@ -42,7 +42,7 @@
"@types/fs-extra": "^9.0.6",
"@types/http-proxy": "^1.17.4",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/serve-handler": "^6.1.0",
"@types/webpack-env": "^1.15.3",
"cypress": "^9.5.0",
+1 -1
View File
@@ -57,7 +57,7 @@
"devDependencies": {
"@backstage/cli": "^0.17.0-next.1",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"msw": "^0.35.0"
},
"files": [