chore: upgrade deps

This commit is contained in:
Mo
2022-03-08 09:07:57 -06:00
parent ae5b182ac1
commit 6d64889aad
6 changed files with 97 additions and 106 deletions

View File

@@ -4,7 +4,6 @@ declare global {
interface Window { interface Window {
bugsnagApiKey?: string; bugsnagApiKey?: string;
dashboardUrl?: string; dashboardUrl?: string;
defaultFilesHost: string;
defaultSyncServer: string; defaultSyncServer: string;
devAccountEmail?: string; devAccountEmail?: string;
devAccountPassword?: string; devAccountPassword?: string;
@@ -30,7 +29,6 @@ import { isDev } from './utils';
const startApplication: StartApplication = async function startApplication( const startApplication: StartApplication = async function startApplication(
defaultSyncServerHost: string, defaultSyncServerHost: string,
defaultFilesHostHost: string,
bridge: Bridge, bridge: Bridge,
enableUnfinishedFeatures: boolean, enableUnfinishedFeatures: boolean,
webSocketUrl: string webSocketUrl: string
@@ -40,7 +38,6 @@ const startApplication: StartApplication = async function startApplication(
const mainApplicationGroup = new ApplicationGroup( const mainApplicationGroup = new ApplicationGroup(
defaultSyncServerHost, defaultSyncServerHost,
defaultFilesHostHost,
bridge, bridge,
enableUnfinishedFeatures ? Runtime.Dev : Runtime.Prod, enableUnfinishedFeatures ? Runtime.Dev : Runtime.Prod,
webSocketUrl webSocketUrl
@@ -75,7 +72,6 @@ const startApplication: StartApplication = async function startApplication(
if (IsWebPlatform) { if (IsWebPlatform) {
startApplication( startApplication(
window.defaultSyncServer, window.defaultSyncServer,
window.defaultFilesHost,
new BrowserBridge(WebAppVersion), new BrowserBridge(WebAppVersion),
window.enabledUnfinishedFeatures, window.enabledUnfinishedFeatures,
window.websocketUrl window.websocketUrl

View File

@@ -2,7 +2,6 @@ import { Bridge } from './services/bridge';
export type StartApplication = ( export type StartApplication = (
defaultSyncServerHost: string, defaultSyncServerHost: string,
defaultFilesHostHost: string,
bridge: Bridge, bridge: Bridge,
enableUnfinishedFeatures: boolean, enableUnfinishedFeatures: boolean,
webSocketUrl: string webSocketUrl: string

View File

@@ -48,7 +48,6 @@ export class WebApplication extends SNApplication {
platform: Platform, platform: Platform,
identifier: string, identifier: string,
defaultSyncServerHost: string, defaultSyncServerHost: string,
defaultFilesHostHost: string,
public bridge: Bridge, public bridge: Bridge,
webSocketUrl: string, webSocketUrl: string,
runtime: Runtime runtime: Runtime
@@ -61,7 +60,6 @@ export class WebApplication extends SNApplication {
alertService: new AlertService(), alertService: new AlertService(),
identifier, identifier,
defaultHost: defaultSyncServerHost, defaultHost: defaultSyncServerHost,
defaultFilesHost: defaultFilesHostHost,
appVersion: bridge.appVersion, appVersion: bridge.appVersion,
webSocketUrl: webSocketUrl, webSocketUrl: webSocketUrl,
runtime, runtime,

View File

@@ -21,7 +21,6 @@ import { InternalEventBus } from '@standardnotes/services';
export class ApplicationGroup extends SNApplicationGroup { export class ApplicationGroup extends SNApplicationGroup {
constructor( constructor(
private defaultSyncServerHost: string, private defaultSyncServerHost: string,
private defaultFilesHostHost: string,
private bridge: Bridge, private bridge: Bridge,
private runtime: Runtime, private runtime: Runtime,
private webSocketUrl: string private webSocketUrl: string
@@ -52,7 +51,6 @@ export class ApplicationGroup extends SNApplicationGroup {
platform, platform,
descriptor.identifier, descriptor.identifier,
this.defaultSyncServerHost, this.defaultSyncServerHost,
this.defaultFilesHostHost,
this.bridge, this.bridge,
this.webSocketUrl, this.webSocketUrl,
this.runtime this.runtime

View File

@@ -27,21 +27,21 @@
"@babel/preset-typescript": "^7.16.7", "@babel/preset-typescript": "^7.16.7",
"@reach/disclosure": "^0.16.2", "@reach/disclosure": "^0.16.2",
"@reach/visually-hidden": "^0.16.0", "@reach/visually-hidden": "^0.16.0",
"@standardnotes/responses": "^1.2.0", "@standardnotes/responses": "^1.3.0",
"@standardnotes/services": "^1.5.0", "@standardnotes/services": "^1.5.2",
"@standardnotes/stylekit": "5.14.0", "@standardnotes/stylekit": "5.15.0",
"@svgr/webpack": "^6.2.1", "@svgr/webpack": "^6.2.1",
"@types/jest": "^27.4.1", "@types/jest": "^27.4.1",
"@types/lodash": "^4.14.179", "@types/lodash": "^4.14.179",
"@types/react": "^17.0.39", "@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.13.0", "@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.13.0", "@typescript-eslint/parser": "^5.14.0",
"apply-loader": "^2.0.0", "apply-loader": "^2.0.0",
"babel-eslint": "^10.1.0", "babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3", "babel-loader": "^8.2.3",
"connect": "^3.7.0", "connect": "^3.7.0",
"copy-webpack-plugin": "^10.2.4", "copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.0", "css-loader": "^6.7.1",
"dotenv": "^16.0.0", "dotenv": "^16.0.0",
"eslint": "^8.10.0", "eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0", "eslint-config-prettier": "^8.5.0",
@@ -79,10 +79,10 @@
"@reach/listbox": "^0.16.2", "@reach/listbox": "^0.16.2",
"@reach/tooltip": "^0.16.2", "@reach/tooltip": "^0.16.2",
"@standardnotes/components": "1.7.9", "@standardnotes/components": "1.7.9",
"@standardnotes/features": "1.34.1", "@standardnotes/features": "1.34.2",
"@standardnotes/settings": "^1.12.0", "@standardnotes/settings": "^1.12.0",
"@standardnotes/sncrypto-web": "1.7.3", "@standardnotes/sncrypto-web": "1.7.3",
"@standardnotes/snjs": "2.76.0", "@standardnotes/snjs": "2.77.0",
"mobx": "^6.4.2", "mobx": "^6.4.2",
"mobx-react-lite": "^3.3.0", "mobx-react-lite": "^3.3.0",
"preact": "^10.6.6", "preact": "^10.6.6",

178
yarn.lock
View File

@@ -2331,50 +2331,50 @@
resolved "https://registry.yarnpkg.com/@standardnotes/components/-/components-1.7.9.tgz#41e5fdbcee250b9b3c18045dad8998c6f668307b" resolved "https://registry.yarnpkg.com/@standardnotes/components/-/components-1.7.9.tgz#41e5fdbcee250b9b3c18045dad8998c6f668307b"
integrity sha512-/+Paw6ry/IS9ldYUM/lgC4O6qwl1fukWvNw65IMKyB9LMY3+xTh/I2BfnWynP117pVPxtu3/2+FBEnx04KvQwg== integrity sha512-/+Paw6ry/IS9ldYUM/lgC4O6qwl1fukWvNw65IMKyB9LMY3+xTh/I2BfnWynP117pVPxtu3/2+FBEnx04KvQwg==
"@standardnotes/domain-events@^2.23.22": "@standardnotes/domain-events@^2.23.24":
version "2.23.22" version "2.23.24"
resolved "https://registry.yarnpkg.com/@standardnotes/domain-events/-/domain-events-2.23.22.tgz#eb246cc3d8e69af7014678f5aac34fa1d7b494a0" resolved "https://registry.yarnpkg.com/@standardnotes/domain-events/-/domain-events-2.23.24.tgz#7872c178491cffb8ad9efa20eca3610a30ca669e"
integrity sha512-mtw1nFZ/laiMisjTNBXgCsu6RLG/zkW4VtvnKjodG2TEJV3zPxFALGRUnsIlSlwt3YdClzg073sKHtUn4s+sAw== integrity sha512-R8n1J4YHnY0qxUJcZt91eth+87Dy//GncsC+mpkNwEgtrzAAkS6lXO4xFwYVw7UHp6EmLtsKCnbXk+72WPzd9A==
dependencies: dependencies:
"@standardnotes/auth" "^3.17.3" "@standardnotes/auth" "^3.17.3"
"@standardnotes/features" "^1.34.1" "@standardnotes/features" "^1.34.2"
"@standardnotes/features@1.34.1", "@standardnotes/features@^1.34.1": "@standardnotes/features@1.34.2", "@standardnotes/features@^1.34.2":
version "1.34.1" version "1.34.2"
resolved "https://registry.yarnpkg.com/@standardnotes/features/-/features-1.34.1.tgz#da2e37a437ba274dfbdb9e0f5ab9de3ee95689ee" resolved "https://registry.yarnpkg.com/@standardnotes/features/-/features-1.34.2.tgz#a3f2480e88a3873ae7dd34e6b57b9595a9f15c87"
integrity sha512-ILc4mSLoAE6S24GquNAS5TNLqM+RBKx8zyfFVgKEUB2sF00341HDi+/l5MuCCds2VnhTvIuVcIsCrPlj9NVmFg== integrity sha512-77/DyFMsL+gW4ElVl4n1huNyeYhFA1PyTPbITWkFhQib02aPhhOmjSecxJknFppSNZnBRRqd2hbBa0vMhxUWIA==
dependencies: dependencies:
"@standardnotes/auth" "^3.17.3" "@standardnotes/auth" "^3.17.3"
"@standardnotes/common" "^1.15.3" "@standardnotes/common" "^1.15.3"
"@standardnotes/payloads@^1.4.0": "@standardnotes/payloads@^1.4.1":
version "1.4.0" version "1.4.1"
resolved "https://registry.yarnpkg.com/@standardnotes/payloads/-/payloads-1.4.0.tgz#e1a5415708c9d462c4f5f4824f7effd7e9d7f791" resolved "https://registry.yarnpkg.com/@standardnotes/payloads/-/payloads-1.4.1.tgz#5da68ecc55920080223518c5d5d186380d1a43ca"
integrity sha512-gAOj3p9KPsQggZ2SjeMjh4XTkTy8ntUYD23kYKbLA/Z7ArCCp8LnZZHASII2kEznaK+vrUAqlSM2/oKwQlohDA== integrity sha512-NXc6Iv2AHIOIzURCuPiHpSgLQwfBFpg8ecozwa+zRXMe1ggEljJGWLutds3ehbqp7C0eCaZr+3pGJhtVdoW06w==
dependencies: dependencies:
"@standardnotes/applications" "^1.1.3" "@standardnotes/applications" "^1.1.3"
"@standardnotes/common" "^1.15.3" "@standardnotes/common" "^1.15.3"
"@standardnotes/features" "^1.34.1" "@standardnotes/features" "^1.34.2"
"@standardnotes/utils" "^1.2.3" "@standardnotes/utils" "^1.2.3"
"@standardnotes/responses@^1.2.0": "@standardnotes/responses@^1.3.0":
version "1.2.0" version "1.3.0"
resolved "https://registry.yarnpkg.com/@standardnotes/responses/-/responses-1.2.0.tgz#fe295b31751dbc692bb65c8e162972127fb990b2" resolved "https://registry.yarnpkg.com/@standardnotes/responses/-/responses-1.3.0.tgz#5c4a901e4ee3fec010e83fe6a773b988e601db07"
integrity sha512-YuVJQlB4ipdqAlAtD0xPhbHSR38fPzcRbSkntaCadHeAZl7WAdDDf/7pxTCDwhXN8Hls9OXlrq+WNbhorpe0tw== integrity sha512-6/g+Hg9yOHvbydw69HNVeblbPH1vzDKSZGYLqWkhKpZjBIHn5dv29PnLfK4OUDJD3C5xFmweYKPBkGuZMuKXrQ==
dependencies: dependencies:
"@standardnotes/auth" "^3.17.3" "@standardnotes/auth" "^3.17.3"
"@standardnotes/common" "^1.15.3" "@standardnotes/common" "^1.15.3"
"@standardnotes/features" "^1.34.1" "@standardnotes/features" "^1.34.2"
"@standardnotes/payloads" "^1.4.0" "@standardnotes/payloads" "^1.4.1"
"@standardnotes/services@^1.5.0": "@standardnotes/services@^1.5.2":
version "1.5.0" version "1.5.2"
resolved "https://registry.yarnpkg.com/@standardnotes/services/-/services-1.5.0.tgz#ab71393d947bf52a7fb682d8bbcc190acef8fe97" resolved "https://registry.yarnpkg.com/@standardnotes/services/-/services-1.5.2.tgz#7c559785b659694801db391814217a2f8acaac87"
integrity sha512-vZ7NmV3SVdt5UQDCJ+OsoGtMFr0wsmHBdXpyb8s4rRnR4PgmJsrhuGXEu0t23EyLilL+Yb6WtkfJQhXeQsiT9w== integrity sha512-MSfZmV8+eJp5SMYs9MV1I/WygBTQL0gVK+utfxB8DctC0y1HeEpF4OtooZHmariiQt38tC7vi1/kEpxqgCRL+Q==
dependencies: dependencies:
"@standardnotes/applications" "^1.1.3" "@standardnotes/applications" "^1.1.3"
"@standardnotes/common" "^1.15.3" "@standardnotes/common" "^1.15.3"
"@standardnotes/responses" "^1.2.0" "@standardnotes/responses" "^1.3.0"
"@standardnotes/utils" "^1.2.3" "@standardnotes/utils" "^1.2.3"
"@standardnotes/settings@^1.12.0": "@standardnotes/settings@^1.12.0":
@@ -2396,27 +2396,27 @@
buffer "^6.0.3" buffer "^6.0.3"
libsodium-wrappers "^0.7.9" libsodium-wrappers "^0.7.9"
"@standardnotes/snjs@2.76.0": "@standardnotes/snjs@2.77.0":
version "2.76.0" version "2.77.0"
resolved "https://registry.yarnpkg.com/@standardnotes/snjs/-/snjs-2.76.0.tgz#61cfa03bea5e624529b7bbdd67646b4184ea30b3" resolved "https://registry.yarnpkg.com/@standardnotes/snjs/-/snjs-2.77.0.tgz#8606cc0c372e27fb099b92c418301f3d0e1add77"
integrity sha512-SWSCMbDsJhdxNpHFHdK60iqaAsgvozvX8pgcAekko+yPlw3kz5Ucp+wwQbiznQRwrxOZPPrG/1NkJa1U/wWcdA== integrity sha512-/JAX65BgJstGIvmQRhtm1QUeS9jRzqbyb5KtRR4WgWn9SVuGRZo2BE0d5ywlQ/y/CW64Xmbp9LDFd137O48uFA==
dependencies: dependencies:
"@standardnotes/applications" "^1.1.3" "@standardnotes/applications" "^1.1.3"
"@standardnotes/auth" "^3.17.3" "@standardnotes/auth" "^3.17.3"
"@standardnotes/common" "^1.15.3" "@standardnotes/common" "^1.15.3"
"@standardnotes/domain-events" "^2.23.22" "@standardnotes/domain-events" "^2.23.24"
"@standardnotes/features" "^1.34.1" "@standardnotes/features" "^1.34.2"
"@standardnotes/payloads" "^1.4.0" "@standardnotes/payloads" "^1.4.1"
"@standardnotes/responses" "^1.2.0" "@standardnotes/responses" "^1.3.0"
"@standardnotes/services" "^1.5.0" "@standardnotes/services" "^1.5.2"
"@standardnotes/settings" "^1.12.0" "@standardnotes/settings" "^1.12.0"
"@standardnotes/sncrypto-common" "^1.7.3" "@standardnotes/sncrypto-common" "^1.7.3"
"@standardnotes/utils" "^1.2.3" "@standardnotes/utils" "^1.2.3"
"@standardnotes/stylekit@5.14.0": "@standardnotes/stylekit@5.15.0":
version "5.14.0" version "5.15.0"
resolved "https://registry.yarnpkg.com/@standardnotes/stylekit/-/stylekit-5.14.0.tgz#806b7d896fb94de8be72e762dd205beefff05fd7" resolved "https://registry.yarnpkg.com/@standardnotes/stylekit/-/stylekit-5.15.0.tgz#14c0ff5c4e40d4afa9ea6fec0431934e1184a18f"
integrity sha512-zCB8QFPUTe+063RsLNCudkP6FY6ujKC3iE2pD6ak4htpXtW6DndwYbhEffuiWIjbRzDGAy0YyQ7y8V19Jw7ElQ== integrity sha512-BR78DIdXo8fxzNPruiugiQJfgT7usUFWxJ0CPnjhk3hshYM2/kleHdcrahYdi2Rs5MR7chhbsvUFUWHxykOaRg==
dependencies: dependencies:
"@nanostores/preact" "^0.1.3" "@nanostores/preact" "^0.1.3"
"@reach/listbox" "^0.16.2" "@reach/listbox" "^0.16.2"
@@ -2833,14 +2833,14 @@
dependencies: dependencies:
"@types/yargs-parser" "*" "@types/yargs-parser" "*"
"@typescript-eslint/eslint-plugin@^5.13.0": "@typescript-eslint/eslint-plugin@^5.14.0":
version "5.13.0" version "5.14.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.13.0.tgz#2809052b85911ced9c54a60dac10e515e9114497" resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.14.0.tgz#5119b67152356231a0e24b998035288a9cd21335"
integrity sha512-vLktb2Uec81fxm/cfz2Hd6QaWOs8qdmVAZXLdOBX6JFJDhf6oDZpMzZ4/LZ6SFM/5DgDcxIMIvy3F+O9yZBuiQ== integrity sha512-ir0wYI4FfFUDfLcuwKzIH7sMVA+db7WYen47iRSaCGl+HMAZI9fpBwfDo45ZALD3A45ZGyHWDNLhbg8tZrMX4w==
dependencies: dependencies:
"@typescript-eslint/scope-manager" "5.13.0" "@typescript-eslint/scope-manager" "5.14.0"
"@typescript-eslint/type-utils" "5.13.0" "@typescript-eslint/type-utils" "5.14.0"
"@typescript-eslint/utils" "5.13.0" "@typescript-eslint/utils" "5.14.0"
debug "^4.3.2" debug "^4.3.2"
functional-red-black-tree "^1.0.1" functional-red-black-tree "^1.0.1"
ignore "^5.1.8" ignore "^5.1.8"
@@ -2848,69 +2848,69 @@
semver "^7.3.5" semver "^7.3.5"
tsutils "^3.21.0" tsutils "^3.21.0"
"@typescript-eslint/parser@^5.13.0": "@typescript-eslint/parser@^5.14.0":
version "5.13.0" version "5.14.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.13.0.tgz#0394ed8f2f849273c0bf4b811994d177112ced5c" resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.14.0.tgz#7c79f898aa3cff0ceee6f1d34eeed0f034fb9ef3"
integrity sha512-GdrU4GvBE29tm2RqWOM0P5QfCtgCyN4hXICj/X9ibKED16136l9ZpoJvCL5pSKtmJzA+NRDzQ312wWMejCVVfg== integrity sha512-aHJN8/FuIy1Zvqk4U/gcO/fxeMKyoSv/rS46UXMXOJKVsLQ+iYPuXNbpbH7cBLcpSbmyyFbwrniLx5+kutu1pw==
dependencies: dependencies:
"@typescript-eslint/scope-manager" "5.13.0" "@typescript-eslint/scope-manager" "5.14.0"
"@typescript-eslint/types" "5.13.0" "@typescript-eslint/types" "5.14.0"
"@typescript-eslint/typescript-estree" "5.13.0" "@typescript-eslint/typescript-estree" "5.14.0"
debug "^4.3.2" debug "^4.3.2"
"@typescript-eslint/scope-manager@5.13.0": "@typescript-eslint/scope-manager@5.14.0":
version "5.13.0" version "5.14.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.13.0.tgz#cf6aff61ca497cb19f0397eea8444a58f46156b6" resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.14.0.tgz#ea518962b42db8ed0a55152ea959c218cb53ca7b"
integrity sha512-T4N8UvKYDSfVYdmJq7g2IPJYCRzwtp74KyDZytkR4OL3NRupvswvmJQJ4CX5tDSurW2cvCc1Ia1qM7d0jpa7IA== integrity sha512-LazdcMlGnv+xUc5R4qIlqH0OWARyl2kaP8pVCS39qSL3Pd1F7mI10DbdXeARcE62sVQE4fHNvEqMWsypWO+yEw==
dependencies: dependencies:
"@typescript-eslint/types" "5.13.0" "@typescript-eslint/types" "5.14.0"
"@typescript-eslint/visitor-keys" "5.13.0" "@typescript-eslint/visitor-keys" "5.14.0"
"@typescript-eslint/type-utils@5.13.0": "@typescript-eslint/type-utils@5.14.0":
version "5.13.0" version "5.14.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.13.0.tgz#b0efd45c85b7bab1125c97b752cab3a86c7b615d" resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.14.0.tgz#711f08105860b12988454e91df433567205a8f0b"
integrity sha512-/nz7qFizaBM1SuqAKb7GLkcNn2buRdDgZraXlkhz+vUGiN1NZ9LzkA595tHHeduAiS2MsHqMNhE2zNzGdw43Yg== integrity sha512-d4PTJxsqaUpv8iERTDSQBKUCV7Q5yyXjqXUl3XF7Sd9ogNLuKLkxz82qxokqQ4jXdTPZudWpmNtr/JjbbvUixw==
dependencies: dependencies:
"@typescript-eslint/utils" "5.13.0" "@typescript-eslint/utils" "5.14.0"
debug "^4.3.2" debug "^4.3.2"
tsutils "^3.21.0" tsutils "^3.21.0"
"@typescript-eslint/types@5.13.0": "@typescript-eslint/types@5.14.0":
version "5.13.0" version "5.14.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.13.0.tgz#da1de4ae905b1b9ff682cab0bed6b2e3be9c04e5" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.14.0.tgz#96317cf116cea4befabc0defef371a1013f8ab11"
integrity sha512-LmE/KO6DUy0nFY/OoQU0XelnmDt+V8lPQhh8MOVa7Y5k2gGRd6U9Kp3wAjhB4OHg57tUO0nOnwYQhRRyEAyOyg== integrity sha512-BR6Y9eE9360LNnW3eEUqAg6HxS9Q35kSIs4rp4vNHRdfg0s+/PgHgskvu5DFTM7G5VKAVjuyaN476LCPrdA7Mw==
"@typescript-eslint/typescript-estree@5.13.0": "@typescript-eslint/typescript-estree@5.14.0":
version "5.13.0" version "5.14.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.13.0.tgz#b37c07b748ff030a3e93d87c842714e020b78141" resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.14.0.tgz#78b7f7385d5b6f2748aacea5c9b7f6ae62058314"
integrity sha512-Q9cQow0DeLjnp5DuEDjLZ6JIkwGx3oYZe+BfcNuw/POhtpcxMTy18Icl6BJqTSd+3ftsrfuVb7mNHRZf7xiaNA== integrity sha512-QGnxvROrCVtLQ1724GLTHBTR0lZVu13izOp9njRvMkCBgWX26PKvmMP8k82nmXBRD3DQcFFq2oj3cKDwr0FaUA==
dependencies: dependencies:
"@typescript-eslint/types" "5.13.0" "@typescript-eslint/types" "5.14.0"
"@typescript-eslint/visitor-keys" "5.13.0" "@typescript-eslint/visitor-keys" "5.14.0"
debug "^4.3.2" debug "^4.3.2"
globby "^11.0.4" globby "^11.0.4"
is-glob "^4.0.3" is-glob "^4.0.3"
semver "^7.3.5" semver "^7.3.5"
tsutils "^3.21.0" tsutils "^3.21.0"
"@typescript-eslint/utils@5.13.0": "@typescript-eslint/utils@5.14.0":
version "5.13.0" version "5.14.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.13.0.tgz#2328feca700eb02837298339a2e49c46b41bd0af" resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.14.0.tgz#6c8bc4f384298cbbb32b3629ba7415f9f80dc8c4"
integrity sha512-+9oHlPWYNl6AwwoEt5TQryEHwiKRVjz7Vk6kaBeD3/kwHE5YqTGHtm/JZY8Bo9ITOeKutFaXnBlMgSATMJALUQ== integrity sha512-EHwlII5mvUA0UsKYnVzySb/5EE/t03duUTweVy8Zqt3UQXBrpEVY144OTceFKaOe4xQXZJrkptCf7PjEBeGK4w==
dependencies: dependencies:
"@types/json-schema" "^7.0.9" "@types/json-schema" "^7.0.9"
"@typescript-eslint/scope-manager" "5.13.0" "@typescript-eslint/scope-manager" "5.14.0"
"@typescript-eslint/types" "5.13.0" "@typescript-eslint/types" "5.14.0"
"@typescript-eslint/typescript-estree" "5.13.0" "@typescript-eslint/typescript-estree" "5.14.0"
eslint-scope "^5.1.1" eslint-scope "^5.1.1"
eslint-utils "^3.0.0" eslint-utils "^3.0.0"
"@typescript-eslint/visitor-keys@5.13.0": "@typescript-eslint/visitor-keys@5.14.0":
version "5.13.0" version "5.14.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.13.0.tgz#f45ff55bcce16403b221ac9240fbeeae4764f0fd" resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.14.0.tgz#1927005b3434ccd0d3ae1b2ecf60e65943c36986"
integrity sha512-HLKEAS/qA1V7d9EzcpLFykTePmOQqOFim8oCvhY3pZgQ8Hi38hYpHd9e5GN6nQBFQNecNhws5wkS9Y5XIO0s/g== integrity sha512-yL0XxfzR94UEkjBqyymMLgCBdojzEuy/eim7N9/RIcTNxpJudAcqsU8eRyfzBbcEzGoPWfdM3AGak3cN08WOIw==
dependencies: dependencies:
"@typescript-eslint/types" "5.13.0" "@typescript-eslint/types" "5.14.0"
eslint-visitor-keys "^3.0.0" eslint-visitor-keys "^3.0.0"
"@webassemblyjs/ast@1.11.1": "@webassemblyjs/ast@1.11.1":
@@ -4116,10 +4116,10 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
shebang-command "^2.0.0" shebang-command "^2.0.0"
which "^2.0.1" which "^2.0.1"
css-loader@^6.7.0: css-loader@^6.7.1:
version "6.7.0" version "6.7.1"
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.7.0.tgz#c1200da1dfffe6643b18bda20fdd84cad3e36d39" resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.7.1.tgz#e98106f154f6e1baf3fc3bc455cb9981c1d5fd2e"
integrity sha512-S7HCfCiDHLA+VXKqdZwyRZgoO0R9BnKDnVIoHMq5grl3N86zAu7MB+FBWHr5xOJC8SmvpTLha/2NpfFkFEN/ig== integrity sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==
dependencies: dependencies:
icss-utils "^5.1.0" icss-utils "^5.1.0"
postcss "^8.4.7" postcss "^8.4.7"