mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
Update all non-major dependencies (#11618)
* Update all non-major dependencies * Fix types Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * highlight.js breaking change Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Hold back jest-sonar-reporter Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
73f91cbafa
commit
67452f5021
10
package.json
10
package.json
@ -84,7 +84,7 @@
|
||||
"emojibase-regex": "15.2.0",
|
||||
"escape-html": "^1.0.3",
|
||||
"file-saver": "^2.0.5",
|
||||
"filesize": "10.0.12",
|
||||
"filesize": "10.1.0",
|
||||
"gfm.css": "^1.1.2",
|
||||
"glob-to-regexp": "^0.4.1",
|
||||
"graphemer": "^1.4.0",
|
||||
@ -109,7 +109,7 @@
|
||||
"opus-recorder": "^8.0.3",
|
||||
"pako": "^2.0.3",
|
||||
"png-chunks-extract": "^1.0.0",
|
||||
"posthog-js": "1.77.2",
|
||||
"posthog-js": "1.83.0",
|
||||
"proposal-temporal": "^0.9.0",
|
||||
"qrcode": "1.5.3",
|
||||
"re-resizable": "^6.9.0",
|
||||
@ -143,7 +143,7 @@
|
||||
"@babel/preset-typescript": "^7.12.7",
|
||||
"@babel/register": "^7.12.10",
|
||||
"@babel/traverse": "^7.12.12",
|
||||
"@casualbot/jest-sonar-reporter": "^2.2.5",
|
||||
"@casualbot/jest-sonar-reporter": "2.2.7",
|
||||
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.14.tgz",
|
||||
"@peculiar/webcrypto": "^1.4.3",
|
||||
"@percy/cli": "^1.11.0",
|
||||
@ -194,10 +194,10 @@
|
||||
"cypress-plugin-init": "^0.0.8",
|
||||
"cypress-real-events": "^1.7.1",
|
||||
"cypress-terminal-report": "^5.3.2",
|
||||
"eslint": "8.48.0",
|
||||
"eslint": "8.51.0",
|
||||
"eslint-config-google": "^0.14.0",
|
||||
"eslint-config-prettier": "^9.0.0",
|
||||
"eslint-plugin-deprecate": "0.7.0",
|
||||
"eslint-plugin-deprecate": "0.8.4",
|
||||
"eslint-plugin-import": "^2.25.4",
|
||||
"eslint-plugin-jest": "^27.2.1",
|
||||
"eslint-plugin-jsx-a11y": "^6.5.1",
|
||||
|
@ -5,4 +5,4 @@
|
||||
@import "_dark.pcss";
|
||||
@import "../../light/css/_mods.pcss";
|
||||
@import "../../../../res/css/_components.pcss";
|
||||
@import url("highlight.js/styles/atom-one-dark.css");
|
||||
@import url("highlight.js/styles/atom-one-dark.min.css");
|
||||
|
@ -4,4 +4,4 @@
|
||||
@import "../../legacy-light/css/_legacy-light.pcss";
|
||||
@import "_legacy-dark.pcss";
|
||||
@import "../../../../res/css/_components.pcss";
|
||||
@import url("highlight.js/styles/atom-one-dark.css");
|
||||
@import url("highlight.js/styles/atom-one-dark.min.css");
|
||||
|
@ -3,4 +3,4 @@
|
||||
@import "_fonts.pcss";
|
||||
@import "_legacy-light.pcss";
|
||||
@import "../../../../res/css/_components.pcss";
|
||||
@import url("highlight.js/styles/atom-one-light.css");
|
||||
@import url("highlight.js/styles/atom-one-light.min.css");
|
||||
|
@ -5,4 +5,4 @@
|
||||
@import "_light-high-contrast.pcss";
|
||||
@import "../../light/css/_mods.pcss";
|
||||
@import "../../../../res/css/_components.pcss";
|
||||
@import url("highlight.js/styles/atom-one-light.css");
|
||||
@import url("highlight.js/styles/atom-one-light.min.css");
|
||||
|
@ -6,4 +6,4 @@
|
||||
@import "_light.pcss";
|
||||
@import "_mods.pcss";
|
||||
@import "../../../../res/css/_components.pcss";
|
||||
@import url("highlight.js/styles/atom-one-light.css");
|
||||
@import url("highlight.js/styles/atom-one-light.min.css");
|
||||
|
@ -307,7 +307,7 @@ export class PosthogAnalytics {
|
||||
// No point identifying again
|
||||
return;
|
||||
}
|
||||
if (this.posthog.persistence.get_user_state() === "identified") {
|
||||
if (this.posthog.persistence?.get_user_state() === "identified") {
|
||||
// Analytics ID has changed, reset as Posthog will refuse to merge in this case
|
||||
this.posthog.reset();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user