Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6bb21c8

Browse files
committedDec 17, 2021
Update dependencies
1 parent a040bac commit 6bb21c8

File tree

3 files changed

+1265
-1127
lines changed

3 files changed

+1265
-1127
lines changed
 

Diff for: ‎package.json

+8-10
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,17 @@
5050
"devDependencies": {
5151
"@rollup/plugin-json": "^4.1.0",
5252
"@rollup/plugin-node-resolve": "^13.0.0",
53-
"@types/jest": "^26.0.23",
54-
"@types/node-fetch": "^2.5.10",
55-
"@types/puppeteer": "^5.4.3",
56-
"@typescript-eslint/eslint-plugin": "^4.26.0",
57-
"@typescript-eslint/parser": "^4.26.0",
53+
"@types/jest": "^27.0.3",
54+
"@typescript-eslint/eslint-plugin": "^5.7.0",
55+
"@typescript-eslint/parser": "^5.7.0",
5856
"csvtojson": "^2.0.10",
59-
"eslint": "^7.28.0",
57+
"eslint": "^8.4.1",
6058
"eslint-config-prettier": "^8.3.0",
61-
"eslint-plugin-prettier": "^3.4.0",
59+
"eslint-plugin-prettier": "^4.0.0",
6260
"jest": "^27.0.4",
6361
"moment": "^2.29.1",
6462
"prettier": "^2.3.1",
65-
"puppeteer": "^10.0.0",
63+
"puppeteer": "^13.0.0",
6664
"rimraf": "^3.0.2",
6765
"rollup": "^2.51.0",
6866
"rollup-plugin-commonjs": "^10.1.0",
@@ -72,7 +70,7 @@
7270
"rollup-plugin-serve": "^1.1.0",
7371
"rollup-plugin-sourcemaps": "^0.6.3",
7472
"rollup-plugin-terser": "^7.0.2",
75-
"rollup-plugin-typescript2": "^0.30.0",
73+
"rollup-plugin-typescript2": "^0.31.1",
7674
"ts-jest": "^27.0.2",
7775
"ts-node": "^10.0.0",
7876
"typescript": "^4.3.2"
@@ -85,7 +83,7 @@
8583
],
8684
"globals": {
8785
"ts-jest": {
88-
"tsConfig": "tsconfig.json"
86+
"tsconfig": "tsconfig.json"
8987
}
9088
},
9189
"testMatch": [

Diff for: ‎src/internal/deviceInfo.ts

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export const deviceInfo = (() => {
1414
// SEE: https://stackoverflow.com/questions/58019463/how-to-detect-device-name-in-safari-on-ios-13-while-it-doesnt-show-the-correct
1515
const isIpad =
1616
platform === 'iPad' ||
17+
// @ts-expect-error
1718
(platform === 'MacIntel' && maxTouchPoints > 0 && !window.MSStream);
1819

1920
const isAndroid = /android/i.test(userAgent);

Diff for: ‎yarn.lock

+1,256-1,117
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.