From 3f0ff6a98f419d33d74ab6caa0ad2cfead601571 Mon Sep 17 00:00:00 2001 From: Johnson Chu Date: Tue, 29 Oct 2024 15:22:15 +0800 Subject: [PATCH 1/6] chore: update tsslint.config.ts --- tsslint.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsslint.config.ts b/tsslint.config.ts index cd1a35dc..6769de0f 100644 --- a/tsslint.config.ts +++ b/tsslint.config.ts @@ -1,11 +1,11 @@ -import { Rules, defineConfig } from '@tsslint/config'; +import type { Rules } from '@tsslint/config'; import type * as ts from 'typescript'; // @ts-ignore import * as path from 'node:path'; -export default defineConfig({ +export default { rules: getDefaultRules(), -}); +}; export function getDefaultRules(): Rules { return { From f3962cdfb41aa949343a0545d2abd90e9ad7718a Mon Sep 17 00:00:00 2001 From: Johnson Chu Date: Tue, 5 Nov 2024 04:53:16 +0800 Subject: [PATCH 2/6] lint: sort rules --- tsslint.config.ts | 214 +++++++++++++++++++++++----------------------- 1 file changed, 107 insertions(+), 107 deletions(-) diff --git a/tsslint.config.ts b/tsslint.config.ts index 6769de0f..fb114cce 100644 --- a/tsslint.config.ts +++ b/tsslint.config.ts @@ -18,7 +18,7 @@ export function getDefaultRules(): Rules { * } * ``` */ - 'interface-property-semicolon'({ typescript: ts, sourceFile, reportWarning }) { + 'format/interface-property-semicolon'({ typescript: ts, sourceFile, reportWarning }) { const { text } = sourceFile; ts.forEachChild(sourceFile, function visit(node) { if (ts.isInterfaceDeclaration(node)) { @@ -56,7 +56,7 @@ export function getDefaultRules(): Rules { * + } * ``` */ - 'braces-around-statements'({ typescript: ts, sourceFile, reportWarning }) { + 'format/braces-around-statements'({ typescript: ts, sourceFile, reportWarning }) { ts.forEachChild(sourceFile, function visit(node) { if (ts.isIfStatement(node)) { if (!ts.isBlock(node.thenStatement)) { @@ -115,52 +115,6 @@ export function getDefaultRules(): Rules { === ts.getLineAndCharacterOfPosition(sourceFile, node.parent.getEnd()).line; } }, - 'missing-dependency'({ typescript: ts, sourceFile, reportError, languageServiceHost }) { - const { noEmit } = languageServiceHost.getCompilationSettings(); - if (noEmit) { - return; - } - const packageJsonPath = ts.findConfigFile(sourceFile.fileName, ts.sys.fileExists, 'package.json'); - if (!packageJsonPath) { - return; - } - const packageJson = JSON.parse(ts.sys.readFile(packageJsonPath) ?? ''); - const parentPackageJsonPath = ts.findConfigFile(path.dirname(path.dirname(packageJsonPath)), ts.sys.fileExists, 'package.json'); - const parentPackageJson = !!parentPackageJsonPath && parentPackageJsonPath !== packageJsonPath - ? JSON.parse(ts.sys.readFile(parentPackageJsonPath) ?? '') - : {}; - ts.forEachChild(sourceFile, function visit(node) { - if ( - ts.isImportDeclaration(node) - && !node.importClause?.isTypeOnly - && ts.isStringLiteral(node.moduleSpecifier) - && !node.moduleSpecifier.text.startsWith('./') - && !node.moduleSpecifier.text.startsWith('../') - ) { - let moduleName = node.moduleSpecifier.text.split('/')[0]; - if (moduleName.startsWith('@')) { - moduleName += '/' + node.moduleSpecifier.text.split('/')[1]; - } - if ( - ( - packageJson.devDependencies?.[moduleName] - || parentPackageJson.dependencies?.[moduleName] - || parentPackageJson.devDependencies?.[moduleName] - || parentPackageJson.peerDependencies?.[moduleName] - ) - && !packageJson.dependencies?.[moduleName] - && !packageJson.peerDependencies?.[moduleName] - ) { - reportError( - `Module '${moduleName}' should be in the dependencies.`, - node.getStart(sourceFile), - node.getEnd() - ); - } - } - ts.forEachChild(node, visit); - }); - }, /** * @example * ```diff @@ -168,7 +122,7 @@ export function getDefaultRules(): Rules { * + const foo = bar => {}; * ``` */ - 'arrow-parens'({ typescript: ts, sourceFile, reportWarning }) { + 'format/arrow-parens'({ typescript: ts, sourceFile, reportWarning }) { ts.forEachChild(sourceFile, function visit(node) { if ( ts.isArrowFunction(node) @@ -215,7 +169,7 @@ export function getDefaultRules(): Rules { ts.forEachChild(node, visit); }); }, - 'need-format'({ typescript: ts, sourceFile, languageService, reportWarning }) { + 'format/need-format'({ typescript: ts, sourceFile, languageService, reportWarning }) { const textChanges = languageService.getFormattingEditsForDocument(sourceFile.fileName, { ...ts.getDefaultFormatCodeSettings(), convertTabsToSpaces: false, @@ -258,6 +212,109 @@ export function getDefaultRules(): Rules { } } }, + 'format/no-trailing-comma-in-function'({ typescript: ts, sourceFile, reportWarning }) { + const { text } = sourceFile; + ts.forEachChild(sourceFile, function visit(node) { + if (ts.isFunctionDeclaration(node) || ts.isArrowFunction(node) || ts.isMethodDeclaration(node)) { + const parameters = node.parameters; + if (parameters.length > 0) { + const lastParameter = parameters[parameters.length - 1]; + const nextCharIndex = lastParameter.end; + if (text[nextCharIndex] === ',') { + reportWarning( + `The last parameter of a function should not have a trailing comma.`, + lastParameter.getStart(sourceFile), + lastParameter.getEnd() + ).withFix( + 'Remove trailing comma', + () => [{ + fileName: sourceFile.fileName, + textChanges: [{ + span: { start: nextCharIndex, length: 1 }, + newText: '' + }] + }] + ); + } + } + } + ts.forEachChild(node, visit); + }); + }, + 'format/no-trailing-comma-in-function-call'({ typescript: ts, sourceFile, reportWarning }) { + const { text } = sourceFile; + ts.forEachChild(sourceFile, function visit(node) { + if (ts.isCallExpression(node)) { + if (node.arguments.length > 0) { + const lastArgument = node.arguments[node.arguments.length - 1]; + const nextCharIndex = lastArgument.end; + if (text[nextCharIndex] === ',') { + reportWarning( + `The last argument of a function call should not have a trailing comma.`, + lastArgument.getStart(sourceFile), + lastArgument.getEnd() + ).withFix( + 'Remove trailing comma', + () => [{ + fileName: sourceFile.fileName, + textChanges: [{ + span: { start: nextCharIndex, length: 1 }, + newText: '' + }] + }] + ); + } + } + } + ts.forEachChild(node, visit); + }); + }, + 'missing-dependency'({ typescript: ts, sourceFile, reportError, languageServiceHost }) { + const { noEmit } = languageServiceHost.getCompilationSettings(); + if (noEmit) { + return; + } + const packageJsonPath = ts.findConfigFile(sourceFile.fileName, ts.sys.fileExists, 'package.json'); + if (!packageJsonPath) { + return; + } + const packageJson = JSON.parse(ts.sys.readFile(packageJsonPath) ?? ''); + const parentPackageJsonPath = ts.findConfigFile(path.dirname(path.dirname(packageJsonPath)), ts.sys.fileExists, 'package.json'); + const parentPackageJson = !!parentPackageJsonPath && parentPackageJsonPath !== packageJsonPath + ? JSON.parse(ts.sys.readFile(parentPackageJsonPath) ?? '') + : {}; + ts.forEachChild(sourceFile, function visit(node) { + if ( + ts.isImportDeclaration(node) + && !node.importClause?.isTypeOnly + && ts.isStringLiteral(node.moduleSpecifier) + && !node.moduleSpecifier.text.startsWith('./') + && !node.moduleSpecifier.text.startsWith('../') + ) { + let moduleName = node.moduleSpecifier.text.split('/')[0]; + if (moduleName.startsWith('@')) { + moduleName += '/' + node.moduleSpecifier.text.split('/')[1]; + } + if ( + ( + packageJson.devDependencies?.[moduleName] + || parentPackageJson.dependencies?.[moduleName] + || parentPackageJson.devDependencies?.[moduleName] + || parentPackageJson.peerDependencies?.[moduleName] + ) + && !packageJson.dependencies?.[moduleName] + && !packageJson.peerDependencies?.[moduleName] + ) { + reportError( + `Module '${moduleName}' should be in the dependencies.`, + node.getStart(sourceFile), + node.getEnd() + ); + } + } + ts.forEachChild(node, visit); + }); + }, /** * TODO: fix the case * let foo: Foo; @@ -362,63 +419,6 @@ export function getDefaultRules(): Rules { ts.forEachChild(node, visit); }); }, - 'no-trailing-comma-in-function'({ typescript: ts, sourceFile, reportWarning }) { - const { text } = sourceFile; - ts.forEachChild(sourceFile, function visit(node) { - if (ts.isFunctionDeclaration(node) || ts.isArrowFunction(node) || ts.isMethodDeclaration(node)) { - const parameters = node.parameters; - if (parameters.length > 0) { - const lastParameter = parameters[parameters.length - 1]; - const nextCharIndex = lastParameter.end; - if (text[nextCharIndex] === ',') { - reportWarning( - `The last parameter of a function should not have a trailing comma.`, - lastParameter.getStart(sourceFile), - lastParameter.getEnd() - ).withFix( - 'Remove trailing comma', - () => [{ - fileName: sourceFile.fileName, - textChanges: [{ - span: { start: nextCharIndex, length: 1 }, - newText: '' - }] - }] - ); - } - } - } - ts.forEachChild(node, visit); - }); - }, - 'no-trailing-comma-in-function-call'({ typescript: ts, sourceFile, reportWarning }) { - const { text } = sourceFile; - ts.forEachChild(sourceFile, function visit(node) { - if (ts.isCallExpression(node)) { - if (node.arguments.length > 0) { - const lastArgument = node.arguments[node.arguments.length - 1]; - const nextCharIndex = lastArgument.end; - if (text[nextCharIndex] === ',') { - reportWarning( - `The last argument of a function call should not have a trailing comma.`, - lastArgument.getStart(sourceFile), - lastArgument.getEnd() - ).withFix( - 'Remove trailing comma', - () => [{ - fileName: sourceFile.fileName, - textChanges: [{ - span: { start: nextCharIndex, length: 1 }, - newText: '' - }] - }] - ); - } - } - } - ts.forEachChild(node, visit); - }); - }, 'no-async-without-await'({ typescript: ts, sourceFile, reportWarning }) { ts.forEachChild(sourceFile, function visit(node) { if (ts.isFunctionDeclaration(node) || ts.isArrowFunction(node) || ts.isMethodDeclaration(node)) { From 48e49eacccf599bf636d1274d6c0198e69117683 Mon Sep 17 00:00:00 2001 From: Johnson Chu Date: Tue, 5 Nov 2024 09:45:20 +0800 Subject: [PATCH 3/6] lint: use johnsoncodehk/tsslint-config --- package.json | 1 - .../lib/features/languageFeatures.ts | 6 +- packages/monaco/lib/editor.ts | 4 +- packages/source-map/lib/sourceMap.ts | 2 +- pnpm-lock.yaml | 502 +++++++++--------- tsslint.config.ts | 458 +--------------- 6 files changed, 266 insertions(+), 707 deletions(-) diff --git a/package.json b/package.json index da17c55b..10b651de 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,6 @@ "@lerna-lite/cli": "latest", "@lerna-lite/publish": "latest", "@tsslint/cli": "latest", - "@tsslint/config": "latest", "typescript": "latest", "vite": "latest", "vitest": "latest" diff --git a/packages/language-server/lib/features/languageFeatures.ts b/packages/language-server/lib/features/languageFeatures.ts index 85544d8c..1789cad7 100644 --- a/packages/language-server/lib/features/languageFeatures.ts +++ b/packages/language-server/lib/features/languageFeatures.ts @@ -249,12 +249,12 @@ export function register( if (languageServicePlugins.some(({ capabilities }) => capabilities.workspaceSymbolProvider?.resolveProvider)) { serverCapabilities.workspaceSymbolProvider.resolveProvider = true; server.connection.onWorkspaceSymbolResolve(async (symbol, token) => { - const languageServiceId = (symbol.data as any)?.languageServiceId; + const languageServiceId = symbol.data?.languageServiceId; const languageService = languageServiceById.get(languageServiceId)?.deref(); if (!languageService) { return symbol; } - symbol.data = (symbol.data as any)?.originalData; + symbol.data = symbol.data?.originalData; return await languageService.resolveWorkspaceSymbol?.(symbol, token); }); } @@ -444,7 +444,7 @@ export function register( let codeActions = await languageService.getCodeActions(uri, params.range, params.context, token) ?? []; for (const codeAction of codeActions) { if (codeAction.data && typeof codeAction.data === 'object') { - (codeAction.data as any).uri = params.textDocument.uri; + codeAction.data.uri = params.textDocument.uri; } else { codeAction.data = { uri: params.textDocument.uri }; diff --git a/packages/monaco/lib/editor.ts b/packages/monaco/lib/editor.ts index 66c24f94..51b17cad 100644 --- a/packages/monaco/lib/editor.ts +++ b/packages/monaco/lib/editor.ts @@ -208,7 +208,9 @@ export function activateAutoInsertion( const codeEditor = editor.getEditors().find(e => e.getModel() === model); if (codeEditor && edit && model.getVersionId() === version) { if (typeof edit === 'string') { - (codeEditor?.getContribution('snippetController2') as any)?.insert(edit); + codeEditor?.getContribution('snippetController2') + // @ts-expect-error + ?.insert(edit); } else { model.pushEditOperations([], [toTextEdit(edit)], () => []); diff --git a/packages/source-map/lib/sourceMap.ts b/packages/source-map/lib/sourceMap.ts index 1577f4a8..782ef01b 100644 --- a/packages/source-map/lib/sourceMap.ts +++ b/packages/source-map/lib/sourceMap.ts @@ -62,7 +62,7 @@ export class SourceMap { const mapped = translateOffset(offset, mapping[fromRange], mapping[toRange], getLengths(mapping, fromRange), getLengths(mapping, toRange)); if (mapped !== undefined) { - yield [mapped, mapping as Mapping] as const; + yield [mapped, mapping] as const; } } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5d1ae082..2299d3cd 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,34 +10,31 @@ importers: devDependencies: '@lerna-lite/cli': specifier: latest - version: 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.8.1)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.8.1)(typescript@5.6.3))(@types/node@22.8.1)(typescript@5.6.3))(@types/node@22.8.1)(typescript@5.6.3) + version: 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.9.0)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.9.0)(typescript@5.6.3))(@types/node@22.9.0)(typescript@5.6.3))(@types/node@22.9.0)(typescript@5.6.3) '@lerna-lite/publish': specifier: latest - version: 3.10.0(@types/node@22.8.1)(typescript@5.6.3) + version: 3.10.0(@types/node@22.9.0)(typescript@5.6.3) '@tsslint/cli': specifier: latest - version: 1.0.17(typescript@5.6.3) - '@tsslint/config': - specifier: latest - version: 1.0.17 + version: 1.1.2(typescript@5.6.3) typescript: specifier: latest version: 5.6.3 vite: specifier: latest - version: 5.4.10(@types/node@22.8.1) + version: 5.4.10(@types/node@22.9.0) vitest: specifier: latest - version: 2.1.3(@types/node@22.8.1) + version: 2.1.4(@types/node@22.9.0) extensions/labs: devDependencies: '@types/node': specifier: latest - version: 22.8.1 + version: 22.9.0 '@types/vscode': specifier: ^1.82.0 - version: 1.94.0 + version: 1.95.0 '@volar/language-server': specifier: 2.4.8 version: link:../../packages/language-server @@ -104,7 +101,7 @@ importers: devDependencies: '@types/node': specifier: latest - version: 22.8.1 + version: 22.9.0 packages/language-core: dependencies: @@ -202,7 +199,7 @@ importers: devDependencies: '@types/node': specifier: latest - version: 22.8.1 + version: 22.9.0 packages/typescript: dependencies: @@ -218,7 +215,7 @@ importers: devDependencies: '@types/node': specifier: latest - version: 22.8.1 + version: 22.9.0 '@types/path-browserify': specifier: latest version: 1.0.3 @@ -243,13 +240,13 @@ importers: devDependencies: '@types/node': specifier: latest - version: 22.8.1 + version: 22.9.0 '@types/path-browserify': specifier: latest version: 1.0.3 '@types/vscode': specifier: ^1.82.0 - version: 1.94.0 + version: 1.95.0 packages: @@ -297,18 +294,14 @@ packages: resolution: {integrity: sha512-gVPW8YLz92ZeCibQH2QUw96odJoiM3k/ZPH3f2HxptozmH6+OnyyvKXo/Egg39HAM230akarQKHf0W74UHlh0Q==} engines: {node: '>=16'} - '@babel/code-frame@7.25.9': - resolution: {integrity: sha512-z88xeGxnzehn2sqZ8UdGQEvYErF1odv2CftxInpSYJt6uHuPe9YjahKZITGs3l5LeI9d2ROG+obuDAoSlqbNfQ==} + '@babel/code-frame@7.26.2': + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} engines: {node: '>=6.9.0'} '@babel/helper-validator-identifier@7.25.9': resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} engines: {node: '>=6.9.0'} - '@babel/highlight@7.25.9': - resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==} - engines: {node: '>=6.9.0'} - '@clack/core@0.3.4': resolution: {integrity: sha512-H4hxZDXgHtWTwV3RAVenqcC4VbJZNegbBjlPvzOzCouXtS2y3sDvlO3IsbrPNWuLWPPlYVYPghQdSF64683Ldw==} @@ -747,25 +740,31 @@ packages: resolution: {integrity: sha512-e5+YUKENATs1JgYHMzTr2MW/NDcXGfYFAuOQU8gJgF/kEh4EqKgfGrfLI67bMD4tbhZVlkigz/9YYwWcbOFthg==} engines: {node: '>=10.13.0'} - '@inquirer/core@10.0.0': - resolution: {integrity: sha512-7dwoKCGvgZGHWTZfOj2KLmbIAIdiXP9NTrwGaTO/XDfKMEmyBahZpnombiG6JDHmiOrmK3GLEJRXrWExXCDLmQ==} + '@inquirer/core@10.0.1': + resolution: {integrity: sha512-KKTgjViBQUi3AAssqjUFMnMO3CM3qwCHvePV9EW+zTKGKafFGFF01sc1yOIYjLJ7QU52G/FbzKc+c01WLzXmVQ==} engines: {node: '>=18'} - '@inquirer/expand@4.0.0': - resolution: {integrity: sha512-mR7JHNIvCB4o12f75KN42he7s1O9tmcSN4wJ6l04oymfXKLn+lYJFI7z9lbe4/Ald6fm8nuF38fuY5hNPl3B+A==} + '@inquirer/expand@4.0.1': + resolution: {integrity: sha512-9anjpdc802YInXekwePsa5LWySzVMHbhVS6v6n5IJxrl8w09mODOeP69wZ1d0WrOvot2buQSmYp4lW/pq8y+zQ==} engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' '@inquirer/figures@1.0.7': resolution: {integrity: sha512-m+Trk77mp54Zma6xLkLuY+mvanPxlE4A7yNKs2HBiyZ4UkVs28Mv5c/pgWrHeInx+USHeX/WEPzjrWrcJiQgjw==} engines: {node: '>=18'} - '@inquirer/input@4.0.0': - resolution: {integrity: sha512-LD7MNzaX+q2OpU4Fn0i/SedhnnBCAnEzRr6L0MP6ohofFFlx9kp5EXX7flbRZlUnh8icOwC3NFmXTyP76hvo0g==} + '@inquirer/input@4.0.1': + resolution: {integrity: sha512-m+SliZ2m43cDRIpAdQxfv5QOeAQCuhS8TGLvtzEP1An4IH1kBES4RLMRgE/fC+z29aN8qYG8Tq/eXQQKTYwqAg==} engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' - '@inquirer/select@4.0.0': - resolution: {integrity: sha512-XTN4AIFusWbNCBU1Xm2YDxbtH94e/FOrC27U3QargSsoDT1mRm+aLfqE+oOZnUuxwtTnInRT8UHRU3MVOu52wg==} + '@inquirer/select@4.0.1': + resolution: {integrity: sha512-tVRatFRGU49bxFCKi/3P+C0E13KZduNFbWuHWRx0L2+jbiyKRpXgHp9qiRHWRk/KarhYBXzH/di6w3VQ5aJd5w==} engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' '@inquirer/type@3.0.0': resolution: {integrity: sha512-YYykfbw/lefC7yKj7nanzQXILM7r3suIvyFlCcMskc99axmsSewXWkAfXKwMbgxL76iAFVmRwmYdwNZNc8gjog==} @@ -957,83 +956,93 @@ packages: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} - '@rollup/rollup-android-arm-eabi@4.24.0': - resolution: {integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==} + '@rollup/rollup-android-arm-eabi@4.24.4': + resolution: {integrity: sha512-jfUJrFct/hTA0XDM5p/htWKoNNTbDLY0KRwEt6pyOA6k2fmk0WVwl65PdUdJZgzGEHWx+49LilkcSaumQRyNQw==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.24.0': - resolution: {integrity: sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==} + '@rollup/rollup-android-arm64@4.24.4': + resolution: {integrity: sha512-j4nrEO6nHU1nZUuCfRKoCcvh7PIywQPUCBa2UsootTHvTHIoIu2BzueInGJhhvQO/2FTRdNYpf63xsgEqH9IhA==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.24.0': - resolution: {integrity: sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==} + '@rollup/rollup-darwin-arm64@4.24.4': + resolution: {integrity: sha512-GmU/QgGtBTeraKyldC7cDVVvAJEOr3dFLKneez/n7BvX57UdhOqDsVwzU7UOnYA7AAOt+Xb26lk79PldDHgMIQ==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.24.0': - resolution: {integrity: sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==} + '@rollup/rollup-darwin-x64@4.24.4': + resolution: {integrity: sha512-N6oDBiZCBKlwYcsEPXGDE4g9RoxZLK6vT98M8111cW7VsVJFpNEqvJeIPfsCzbf0XEakPslh72X0gnlMi4Ddgg==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.24.0': - resolution: {integrity: sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==} + '@rollup/rollup-freebsd-arm64@4.24.4': + resolution: {integrity: sha512-py5oNShCCjCyjWXCZNrRGRpjWsF0ic8f4ieBNra5buQz0O/U6mMXCpC1LvrHuhJsNPgRt36tSYMidGzZiJF6mw==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.24.4': + resolution: {integrity: sha512-L7VVVW9FCnTTp4i7KrmHeDsDvjB4++KOBENYtNYAiYl96jeBThFfhP6HVxL74v4SiZEVDH/1ILscR5U9S4ms4g==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.24.4': + resolution: {integrity: sha512-10ICosOwYChROdQoQo589N5idQIisxjaFE/PAnX2i0Zr84mY0k9zul1ArH0rnJ/fpgiqfu13TFZR5A5YJLOYZA==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.24.0': - resolution: {integrity: sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==} + '@rollup/rollup-linux-arm-musleabihf@4.24.4': + resolution: {integrity: sha512-ySAfWs69LYC7QhRDZNKqNhz2UKN8LDfbKSMAEtoEI0jitwfAG2iZwVqGACJT+kfYvvz3/JgsLlcBP+WWoKCLcw==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.24.0': - resolution: {integrity: sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==} + '@rollup/rollup-linux-arm64-gnu@4.24.4': + resolution: {integrity: sha512-uHYJ0HNOI6pGEeZ/5mgm5arNVTI0nLlmrbdph+pGXpC9tFHFDQmDMOEqkmUObRfosJqpU8RliYoGz06qSdtcjg==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.24.0': - resolution: {integrity: sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==} + '@rollup/rollup-linux-arm64-musl@4.24.4': + resolution: {integrity: sha512-38yiWLemQf7aLHDgTg85fh3hW9stJ0Muk7+s6tIkSUOMmi4Xbv5pH/5Bofnsb6spIwD5FJiR+jg71f0CH5OzoA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.24.0': - resolution: {integrity: sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==} + '@rollup/rollup-linux-powerpc64le-gnu@4.24.4': + resolution: {integrity: sha512-q73XUPnkwt9ZNF2xRS4fvneSuaHw2BXuV5rI4cw0fWYVIWIBeDZX7c7FWhFQPNTnE24172K30I+dViWRVD9TwA==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.24.0': - resolution: {integrity: sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==} + '@rollup/rollup-linux-riscv64-gnu@4.24.4': + resolution: {integrity: sha512-Aie/TbmQi6UXokJqDZdmTJuZBCU3QBDA8oTKRGtd4ABi/nHgXICulfg1KI6n9/koDsiDbvHAiQO3YAUNa/7BCw==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.24.0': - resolution: {integrity: sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==} + '@rollup/rollup-linux-s390x-gnu@4.24.4': + resolution: {integrity: sha512-P8MPErVO/y8ohWSP9JY7lLQ8+YMHfTI4bAdtCi3pC2hTeqFJco2jYspzOzTUB8hwUWIIu1xwOrJE11nP+0JFAQ==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.24.0': - resolution: {integrity: sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==} + '@rollup/rollup-linux-x64-gnu@4.24.4': + resolution: {integrity: sha512-K03TljaaoPK5FOyNMZAAEmhlyO49LaE4qCsr0lYHUKyb6QacTNF9pnfPpXnFlFD3TXuFbFbz7tJ51FujUXkXYA==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.24.0': - resolution: {integrity: sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==} + '@rollup/rollup-linux-x64-musl@4.24.4': + resolution: {integrity: sha512-VJYl4xSl/wqG2D5xTYncVWW+26ICV4wubwN9Gs5NrqhJtayikwCXzPL8GDsLnaLU3WwhQ8W02IinYSFJfyo34Q==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.24.0': - resolution: {integrity: sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==} + '@rollup/rollup-win32-arm64-msvc@4.24.4': + resolution: {integrity: sha512-ku2GvtPwQfCqoPFIJCqZ8o7bJcj+Y54cZSr43hHca6jLwAiCbZdBUOrqE6y29QFajNAzzpIOwsckaTFmN6/8TA==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.24.0': - resolution: {integrity: sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==} + '@rollup/rollup-win32-ia32-msvc@4.24.4': + resolution: {integrity: sha512-V3nCe+eTt/W6UYNr/wGvO1fLpHUrnlirlypZfKCT1fG6hWfqhPgQV/K/mRBXBpxc0eKLIF18pIOFVPh0mqHjlg==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.24.0': - resolution: {integrity: sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==} + '@rollup/rollup-win32-x64-msvc@4.24.4': + resolution: {integrity: sha512-LTw1Dfd0mBIEqUVCxbvTE/LLo+9ZxVC9k99v1v4ahg9Aak6FpqOfNu5kRkeTAn0wphoC4JU7No1/rL+bBCEwhg==} cpu: [x64] os: [win32] @@ -1064,20 +1073,20 @@ packages: resolution: {integrity: sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==} engines: {node: ^16.14.0 || >=18.0.0} - '@tsslint/cli@1.0.17': - resolution: {integrity: sha512-ZzvKWJTALS64/QxTN9W9717FebePhHQfZA2FD0mm8sRhnQsEEFn1w5IUeq3czNp6MvApzXhHe9etOmafTQYTDg==} + '@tsslint/cli@1.1.2': + resolution: {integrity: sha512-G7TxL8Tq3/FMj3DXm3+w7E8eeZFPTn+yvfGs/9ptXF4EL65+KzrKoZdZzD4F3BgZIMt2zq7ilzIifFe7/6/f9g==} hasBin: true peerDependencies: typescript: '*' - '@tsslint/config@1.0.17': - resolution: {integrity: sha512-KOBWOWSyw9GWqtgew5QOtO4Q1VV3gsIYo5PF3LOnIwVYIODdzaMZLTIG79h46/4autuT0GzQgFkpNxdqoXX81w==} + '@tsslint/config@1.1.2': + resolution: {integrity: sha512-vYRWU+/gGVA/07kVO6LPHZC8dpRtvrOe+L6SPKLXRc3+FVW2v/oS5uP1gqNjql1HdN45YjO2RrSSeZZEGwnuPQ==} - '@tsslint/core@1.0.17': - resolution: {integrity: sha512-TzGetK1tIRfYHU1y1PC8bt6VyJMhm22DBRxzY2dzipmL4f/4ZLfJbcbkeVY2Z4USARgJY2gADFMyyzZ9Bc50ng==} + '@tsslint/core@1.1.2': + resolution: {integrity: sha512-ua+ewqo2MQwCiN2JeM7wV4ni8+s2UcwLKS0/urHWAt2phDjBMAOF2Z9OqCs0rT+GGvZh5APQVUiQCKtmVWVl7g==} - '@tsslint/types@1.0.17': - resolution: {integrity: sha512-2zHVkbra7AalBdvDOBddd+Du8tYMVQBkgSJKP3WWTU9p8zKj/RRRQt9Iqp0E3H0mJMS+khGBt6vcBoFlckFs/Q==} + '@tsslint/types@1.1.2': + resolution: {integrity: sha512-LleG3hD1lhqFB040ngZXP+fDYl2gGVpkmIkLeN6g3Zcw8JUcOnPggt59qkMM4yrUqZOPVLnRts5zqOJ9e+7UIQ==} '@tufjs/canonical-json@2.0.0': resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==} @@ -1096,8 +1105,8 @@ packages: '@types/json-schema@7.0.15': resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - '@types/node@22.8.1': - resolution: {integrity: sha512-k6Gi8Yyo8EtrNtkHXutUu2corfDf9su95VYVP10aGYMMROM6SAItZi0w1XszA6RtWTHSVp5OeFof37w0IEqCQg==} + '@types/node@22.9.0': + resolution: {integrity: sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -1105,17 +1114,16 @@ packages: '@types/path-browserify@1.0.3': resolution: {integrity: sha512-ZmHivEbNCBtAfcrFeBCiTjdIc2dey0l7oCGNGpSuRTy8jP6UVND7oUowlvDujBy8r2Hoa8bfFUOCiPWfmtkfxw==} - '@types/vscode@1.94.0': - resolution: {integrity: sha512-UyQOIUT0pb14XSqJskYnRwD2aG0QrPVefIfrW1djR+/J4KeFQ0i1+hjZoaAmeNf3Z2jleK+R2hv+EboG/m8ruw==} + '@types/vscode@1.95.0': + resolution: {integrity: sha512-0LBD8TEiNbet3NvWsmn59zLzOFu/txSlGxnv5yAFHCrhG9WvAnR3IvfHzMOs2aeWqgvNjq9pO99IUw8d3n+unw==} - '@vitest/expect@2.1.3': - resolution: {integrity: sha512-SNBoPubeCJhZ48agjXruCI57DvxcsivVDdWz+SSsmjTT4QN/DfHk3zB/xKsJqMs26bLZ/pNRLnCf0j679i0uWQ==} + '@vitest/expect@2.1.4': + resolution: {integrity: sha512-DOETT0Oh1avie/D/o2sgMHGrzYUFFo3zqESB2Hn70z6QB1HrS2IQ9z5DfyTqU8sg4Bpu13zZe9V4+UTNQlUeQA==} - '@vitest/mocker@2.1.3': - resolution: {integrity: sha512-eSpdY/eJDuOvuTA3ASzCjdithHa+GIF1L4PqtEELl6Qa3XafdMLBpBlZCIUCX2J+Q6sNmjmxtosAG62fK4BlqQ==} + '@vitest/mocker@2.1.4': + resolution: {integrity: sha512-Ky/O1Lc0QBbutJdW0rqLeFNbuLEyS+mIPiNdlVlp2/yhJ0SbyYqObS5IHdhferJud8MbbwMnexg4jordE5cCoQ==} peerDependencies: - '@vitest/spy': 2.1.3 - msw: ^2.3.5 + msw: ^2.4.9 vite: ^5.0.0 peerDependenciesMeta: msw: @@ -1123,20 +1131,20 @@ packages: vite: optional: true - '@vitest/pretty-format@2.1.3': - resolution: {integrity: sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ==} + '@vitest/pretty-format@2.1.4': + resolution: {integrity: sha512-L95zIAkEuTDbUX1IsjRl+vyBSLh3PwLLgKpghl37aCK9Jvw0iP+wKwIFhfjdUtA2myLgjrG6VU6JCFLv8q/3Ww==} - '@vitest/runner@2.1.3': - resolution: {integrity: sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ==} + '@vitest/runner@2.1.4': + resolution: {integrity: sha512-sKRautINI9XICAMl2bjxQM8VfCMTB0EbsBc/EDFA57V6UQevEKY/TOPOF5nzcvCALltiLfXWbq4MaAwWx/YxIA==} - '@vitest/snapshot@2.1.3': - resolution: {integrity: sha512-qWC2mWc7VAXmjAkEKxrScWHWFyCQx/cmiZtuGqMi+WwqQJ2iURsVY4ZfAK6dVo6K2smKRU6l3BPwqEBvhnpQGg==} + '@vitest/snapshot@2.1.4': + resolution: {integrity: sha512-3Kab14fn/5QZRog5BPj6Rs8dc4B+mim27XaKWFWHWA87R56AKjHTGcBFKpvZKDzC4u5Wd0w/qKsUIio3KzWW4Q==} - '@vitest/spy@2.1.3': - resolution: {integrity: sha512-Nb2UzbcUswzeSP7JksMDaqsI43Sj5+Kry6ry6jQJT4b5gAK+NS9NED6mDb8FlMRCX8m5guaHCDZmqYMMWRy5nQ==} + '@vitest/spy@2.1.4': + resolution: {integrity: sha512-4JOxa+UAizJgpZfaCPKK2smq9d8mmjZVPMt2kOsg/R8QkoRzydHH1qHxIYNvr1zlEaFj4SXiaaJWxq/LPLKaLg==} - '@vitest/utils@2.1.3': - resolution: {integrity: sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA==} + '@vitest/utils@2.1.4': + resolution: {integrity: sha512-MXDnZn0Awl2S86PSNIim5PWXgIAx8CIkzu35mBdSApUip6RFOGXBCf3YFyeEu8n1IHk4bWD46DeYFu9mQlFIRg==} '@vscode/vsce-sign-alpine-arm64@2.0.2': resolution: {integrity: sha512-E80YvqhtZCLUv3YAf9+tIbbqoinWLCO/B3j03yQPbjT3ZIHCliKZlsy1peNc4XNZ5uIb87Jn0HWx/ZbPXviuAQ==} @@ -1183,8 +1191,8 @@ packages: cpu: [x64] os: [win32] - '@vscode/vsce-sign@2.0.4': - resolution: {integrity: sha512-0uL32egStKYfy60IqnynAChMTbL0oqpqk0Ew0YHiIb+fayuGZWADuIPHWUcY1GCnAA+VgchOPDMxnc2R3XGWEA==} + '@vscode/vsce-sign@2.0.5': + resolution: {integrity: sha512-GfYWrsT/vypTMDMgWDm75iDmAOMe7F71sZECJ+Ws6/xyIfmB3ELVnVN+LwMFAvmXY+e6eWhR2EzNGF/zAhWY3Q==} '@vscode/vsce@3.2.1': resolution: {integrity: sha512-AY9vBjwExakK1c0cI/3NN2Ey0EgiKLBye/fxl/ue+o4q6RZ7N+xzd1jAD6eI6eBeMVANi617+V2rxIAkDPco2Q==} @@ -1696,6 +1704,10 @@ packages: resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} engines: {node: '>=6'} + expect-type@1.1.0: + resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} + engines: {node: '>=12.0.0'} + exponential-backoff@3.1.1: resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} @@ -2157,8 +2169,8 @@ packages: lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} - lru-cache@11.0.1: - resolution: {integrity: sha512-CgeuL5uom6j/ZVrg7G/+1IXqRY8JXX4Hghfy5YE0EhoYQWvndP1kufu58cmZLNIDKnRhZrXfdS9urVWx98AipQ==} + lru-cache@11.0.2: + resolution: {integrity: sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==} engines: {node: 20 || >=22} lru-cache@6.0.0: @@ -2497,8 +2509,8 @@ packages: parse5-parser-stream@7.1.2: resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==} - parse5@7.2.0: - resolution: {integrity: sha512-ZkDsAOcxsUMZ4Lz5fVciOehNcJ+Gb8gTzcA4yl3wnc273BAybYWrQ+Ks/OjCjSEpjvQkDSeZbybK9qj2VHHdGA==} + parse5@7.2.1: + resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==} path-browserify@1.0.1: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} @@ -2682,8 +2694,8 @@ packages: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - rollup@4.24.0: - resolution: {integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==} + rollup@4.24.4: + resolution: {integrity: sha512-vGorVWIsWfX3xbcyAS+I047kFKapHYivmkaT63Smj77XwvLSJos6M1xGqZnBPFQFBRZDOcG1QnYEIxAvTr/HjA==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -2926,8 +2938,8 @@ packages: resolution: {integrity: sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - tslib@2.8.0: - resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==} + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} tuf-js@2.2.1: resolution: {integrity: sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==} @@ -3025,8 +3037,8 @@ packages: resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - vite-node@2.1.3: - resolution: {integrity: sha512-I1JadzO+xYX887S39Do+paRePCKoiDrWRRjp9kkG5he0t7RXNvPAJPCQSJqbGN4uCrFFeS3Kj3sLqY8NMYBEdA==} + vite-node@2.1.4: + resolution: {integrity: sha512-kqa9v+oi4HwkG6g8ufRnb5AeplcRw8jUF6/7/Qz1qRQOXHImG8YnLbB+LLszENwFnoBl9xIf9nVdCFzNd7GQEg==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -3061,15 +3073,15 @@ packages: terser: optional: true - vitest@2.1.3: - resolution: {integrity: sha512-Zrxbg/WiIvUP2uEzelDNTXmEMJXuzJ1kCpbDvaKByFA9MNeO95V+7r/3ti0qzJzrxdyuUw5VduN7k+D3VmVOSA==} + vitest@2.1.4: + resolution: {integrity: sha512-eDjxbVAJw1UJJCHr5xr/xM86Zx+YxIEXGAR+bmnEID7z9qWfoxpHw0zdobz+TQAFOLT+nEXz3+gx6nUJ7RgmlQ==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 2.1.3 - '@vitest/ui': 2.1.3 + '@vitest/browser': 2.1.4 + '@vitest/ui': 2.1.4 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -3220,13 +3232,13 @@ snapshots: '@azure/abort-controller@2.1.2': dependencies: - tslib: 2.8.0 + tslib: 2.8.1 '@azure/core-auth@1.9.0': dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-util': 1.11.0 - tslib: 2.8.0 + tslib: 2.8.1 '@azure/core-client@1.9.2': dependencies: @@ -3236,7 +3248,7 @@ snapshots: '@azure/core-tracing': 1.2.0 '@azure/core-util': 1.11.0 '@azure/logger': 1.1.4 - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -3249,18 +3261,18 @@ snapshots: '@azure/logger': 1.1.4 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.5 - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - supports-color '@azure/core-tracing@1.2.0': dependencies: - tslib: 2.8.0 + tslib: 2.8.1 '@azure/core-util@1.11.0': dependencies: '@azure/abort-controller': 2.1.2 - tslib: 2.8.0 + tslib: 2.8.1 '@azure/identity@4.5.0': dependencies: @@ -3277,13 +3289,13 @@ snapshots: jws: 4.0.0 open: 8.4.2 stoppable: 1.1.0 - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - supports-color '@azure/logger@1.1.4': dependencies: - tslib: 2.8.0 + tslib: 2.8.1 '@azure/msal-browser@3.26.1': dependencies: @@ -3297,20 +3309,14 @@ snapshots: jsonwebtoken: 9.0.2 uuid: 8.3.2 - '@babel/code-frame@7.25.9': - dependencies: - '@babel/highlight': 7.25.9 - picocolors: 1.1.1 - - '@babel/helper-validator-identifier@7.25.9': {} - - '@babel/highlight@7.25.9': + '@babel/code-frame@7.26.2': dependencies: '@babel/helper-validator-identifier': 7.25.9 - chalk: 2.4.2 js-tokens: 4.0.0 picocolors: 1.1.1 + '@babel/helper-validator-identifier@7.25.9': {} + '@clack/core@0.3.4': dependencies: picocolors: 1.1.1 @@ -3537,10 +3543,10 @@ snapshots: '@hutson/parse-repository-url@5.0.0': {} - '@inquirer/core@10.0.0(@types/node@22.8.1)': + '@inquirer/core@10.0.1(@types/node@22.9.0)': dependencies: '@inquirer/figures': 1.0.7 - '@inquirer/type': 3.0.0(@types/node@22.8.1) + '@inquirer/type': 3.0.0(@types/node@22.9.0) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -3551,36 +3557,33 @@ snapshots: transitivePeerDependencies: - '@types/node' - '@inquirer/expand@4.0.0(@types/node@22.8.1)': + '@inquirer/expand@4.0.1(@types/node@22.9.0)': dependencies: - '@inquirer/core': 10.0.0(@types/node@22.8.1) - '@inquirer/type': 3.0.0(@types/node@22.8.1) + '@inquirer/core': 10.0.1(@types/node@22.9.0) + '@inquirer/type': 3.0.0(@types/node@22.9.0) + '@types/node': 22.9.0 yoctocolors-cjs: 2.1.2 - transitivePeerDependencies: - - '@types/node' '@inquirer/figures@1.0.7': {} - '@inquirer/input@4.0.0(@types/node@22.8.1)': + '@inquirer/input@4.0.1(@types/node@22.9.0)': dependencies: - '@inquirer/core': 10.0.0(@types/node@22.8.1) - '@inquirer/type': 3.0.0(@types/node@22.8.1) - transitivePeerDependencies: - - '@types/node' + '@inquirer/core': 10.0.1(@types/node@22.9.0) + '@inquirer/type': 3.0.0(@types/node@22.9.0) + '@types/node': 22.9.0 - '@inquirer/select@4.0.0(@types/node@22.8.1)': + '@inquirer/select@4.0.1(@types/node@22.9.0)': dependencies: - '@inquirer/core': 10.0.0(@types/node@22.8.1) + '@inquirer/core': 10.0.1(@types/node@22.9.0) '@inquirer/figures': 1.0.7 - '@inquirer/type': 3.0.0(@types/node@22.8.1) + '@inquirer/type': 3.0.0(@types/node@22.9.0) + '@types/node': 22.9.0 ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.2 - transitivePeerDependencies: - - '@types/node' - '@inquirer/type@3.0.0(@types/node@22.8.1)': + '@inquirer/type@3.0.0(@types/node@22.9.0)': dependencies: - '@types/node': 22.8.1 + '@types/node': 22.9.0 '@isaacs/cliui@8.0.2': dependencies: @@ -3595,10 +3598,10 @@ snapshots: '@jridgewell/sourcemap-codec@1.5.0': {} - '@lerna-lite/cli@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.8.1)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.8.1)(typescript@5.6.3))(@types/node@22.8.1)(typescript@5.6.3))(@types/node@22.8.1)(typescript@5.6.3)': + '@lerna-lite/cli@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.9.0)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.9.0)(typescript@5.6.3))(@types/node@22.9.0)(typescript@5.6.3))(@types/node@22.9.0)(typescript@5.6.3)': dependencies: - '@lerna-lite/core': 3.10.0(@types/node@22.8.1)(typescript@5.6.3) - '@lerna-lite/init': 3.10.0(@types/node@22.8.1)(typescript@5.6.3) + '@lerna-lite/core': 3.10.0(@types/node@22.9.0)(typescript@5.6.3) + '@lerna-lite/init': 3.10.0(@types/node@22.9.0)(typescript@5.6.3) '@lerna-lite/npmlog': 3.10.0 dedent: 1.5.3 dotenv: 16.4.5 @@ -3606,8 +3609,8 @@ snapshots: load-json-file: 7.0.1 yargs: 17.7.2 optionalDependencies: - '@lerna-lite/publish': 3.10.0(@types/node@22.8.1)(typescript@5.6.3) - '@lerna-lite/version': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.8.1)(typescript@5.6.3))(@types/node@22.8.1)(typescript@5.6.3) + '@lerna-lite/publish': 3.10.0(@types/node@22.9.0)(typescript@5.6.3) + '@lerna-lite/version': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.9.0)(typescript@5.6.3))(@types/node@22.9.0)(typescript@5.6.3) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -3615,11 +3618,11 @@ snapshots: - supports-color - typescript - '@lerna-lite/core@3.10.0(@types/node@22.8.1)(typescript@5.6.3)': + '@lerna-lite/core@3.10.0(@types/node@22.9.0)(typescript@5.6.3)': dependencies: - '@inquirer/expand': 4.0.0(@types/node@22.8.1) - '@inquirer/input': 4.0.0(@types/node@22.8.1) - '@inquirer/select': 4.0.0(@types/node@22.8.1) + '@inquirer/expand': 4.0.1(@types/node@22.9.0) + '@inquirer/input': 4.0.1(@types/node@22.9.0) + '@inquirer/select': 4.0.1(@types/node@22.9.0) '@lerna-lite/npmlog': 3.10.0 '@npmcli/run-script': 8.1.0 clone-deep: 4.0.1 @@ -3653,9 +3656,9 @@ snapshots: - supports-color - typescript - '@lerna-lite/init@3.10.0(@types/node@22.8.1)(typescript@5.6.3)': + '@lerna-lite/init@3.10.0(@types/node@22.9.0)(typescript@5.6.3)': dependencies: - '@lerna-lite/core': 3.10.0(@types/node@22.8.1)(typescript@5.6.3) + '@lerna-lite/core': 3.10.0(@types/node@22.9.0)(typescript@5.6.3) fs-extra: 11.2.0 p-map: 7.0.2 write-json-file: 6.0.0 @@ -3678,12 +3681,12 @@ snapshots: strip-ansi: 7.1.0 wide-align: 1.1.5 - '@lerna-lite/publish@3.10.0(@types/node@22.8.1)(typescript@5.6.3)': + '@lerna-lite/publish@3.10.0(@types/node@22.9.0)(typescript@5.6.3)': dependencies: - '@lerna-lite/cli': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.8.1)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.8.1)(typescript@5.6.3))(@types/node@22.8.1)(typescript@5.6.3))(@types/node@22.8.1)(typescript@5.6.3) - '@lerna-lite/core': 3.10.0(@types/node@22.8.1)(typescript@5.6.3) + '@lerna-lite/cli': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.9.0)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.9.0)(typescript@5.6.3))(@types/node@22.9.0)(typescript@5.6.3))(@types/node@22.9.0)(typescript@5.6.3) + '@lerna-lite/core': 3.10.0(@types/node@22.9.0)(typescript@5.6.3) '@lerna-lite/npmlog': 3.10.0 - '@lerna-lite/version': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.8.1)(typescript@5.6.3))(@types/node@22.8.1)(typescript@5.6.3) + '@lerna-lite/version': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.9.0)(typescript@5.6.3))(@types/node@22.9.0)(typescript@5.6.3) '@npmcli/arborist': 7.5.4 '@npmcli/package-json': 5.2.1 byte-size: 9.0.0 @@ -3716,10 +3719,10 @@ snapshots: - supports-color - typescript - '@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.8.1)(typescript@5.6.3))(@types/node@22.8.1)(typescript@5.6.3)': + '@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.9.0)(typescript@5.6.3))(@types/node@22.9.0)(typescript@5.6.3)': dependencies: - '@lerna-lite/cli': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.8.1)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.8.1)(typescript@5.6.3))(@types/node@22.8.1)(typescript@5.6.3))(@types/node@22.8.1)(typescript@5.6.3) - '@lerna-lite/core': 3.10.0(@types/node@22.8.1)(typescript@5.6.3) + '@lerna-lite/cli': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.9.0)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.9.0)(typescript@5.6.3))(@types/node@22.9.0)(typescript@5.6.3))(@types/node@22.9.0)(typescript@5.6.3) + '@lerna-lite/core': 3.10.0(@types/node@22.9.0)(typescript@5.6.3) '@lerna-lite/npmlog': 3.10.0 '@octokit/plugin-enterprise-rest': 6.0.1 '@octokit/rest': 21.0.2 @@ -3971,52 +3974,58 @@ snapshots: '@pkgjs/parseargs@0.11.0': optional: true - '@rollup/rollup-android-arm-eabi@4.24.0': + '@rollup/rollup-android-arm-eabi@4.24.4': optional: true - '@rollup/rollup-android-arm64@4.24.0': + '@rollup/rollup-android-arm64@4.24.4': optional: true - '@rollup/rollup-darwin-arm64@4.24.0': + '@rollup/rollup-darwin-arm64@4.24.4': optional: true - '@rollup/rollup-darwin-x64@4.24.0': + '@rollup/rollup-darwin-x64@4.24.4': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.24.0': + '@rollup/rollup-freebsd-arm64@4.24.4': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.24.0': + '@rollup/rollup-freebsd-x64@4.24.4': optional: true - '@rollup/rollup-linux-arm64-gnu@4.24.0': + '@rollup/rollup-linux-arm-gnueabihf@4.24.4': optional: true - '@rollup/rollup-linux-arm64-musl@4.24.0': + '@rollup/rollup-linux-arm-musleabihf@4.24.4': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.24.0': + '@rollup/rollup-linux-arm64-gnu@4.24.4': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.24.0': + '@rollup/rollup-linux-arm64-musl@4.24.4': optional: true - '@rollup/rollup-linux-s390x-gnu@4.24.0': + '@rollup/rollup-linux-powerpc64le-gnu@4.24.4': optional: true - '@rollup/rollup-linux-x64-gnu@4.24.0': + '@rollup/rollup-linux-riscv64-gnu@4.24.4': optional: true - '@rollup/rollup-linux-x64-musl@4.24.0': + '@rollup/rollup-linux-s390x-gnu@4.24.4': optional: true - '@rollup/rollup-win32-arm64-msvc@4.24.0': + '@rollup/rollup-linux-x64-gnu@4.24.4': optional: true - '@rollup/rollup-win32-ia32-msvc@4.24.0': + '@rollup/rollup-linux-x64-musl@4.24.4': optional: true - '@rollup/rollup-win32-x64-msvc@4.24.0': + '@rollup/rollup-win32-arm64-msvc@4.24.4': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.24.4': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.24.4': optional: true '@sec-ant/readable-stream@0.4.1': {} @@ -4053,27 +4062,27 @@ snapshots: '@sigstore/core': 1.1.0 '@sigstore/protobuf-specs': 0.3.2 - '@tsslint/cli@1.0.17(typescript@5.6.3)': + '@tsslint/cli@1.1.2(typescript@5.6.3)': dependencies: '@clack/prompts': 0.7.0 - '@tsslint/config': 1.0.17 - '@tsslint/core': 1.0.17 + '@tsslint/config': 1.1.2 + '@tsslint/core': 1.1.2 glob: 10.4.5 typescript: 5.6.3 - '@tsslint/config@1.0.17': + '@tsslint/config@1.1.2': dependencies: - '@tsslint/types': 1.0.17 + '@tsslint/types': 1.1.2 - '@tsslint/core@1.0.17': + '@tsslint/core@1.1.2': dependencies: - '@tsslint/types': 1.0.17 + '@tsslint/types': 1.1.2 error-stack-parser: 2.1.4 esbuild: 0.23.1 minimatch: 10.0.1 source-map-support: 0.5.21 - '@tsslint/types@1.0.17': {} + '@tsslint/types@1.1.2': {} '@tufjs/canonical-json@2.0.0': {} @@ -4091,7 +4100,7 @@ snapshots: '@types/json-schema@7.0.15': {} - '@types/node@22.8.1': + '@types/node@22.9.0': dependencies: undici-types: 6.19.8 @@ -4099,45 +4108,45 @@ snapshots: '@types/path-browserify@1.0.3': {} - '@types/vscode@1.94.0': {} + '@types/vscode@1.95.0': {} - '@vitest/expect@2.1.3': + '@vitest/expect@2.1.4': dependencies: - '@vitest/spy': 2.1.3 - '@vitest/utils': 2.1.3 + '@vitest/spy': 2.1.4 + '@vitest/utils': 2.1.4 chai: 5.1.2 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.4.10(@types/node@22.8.1))': + '@vitest/mocker@2.1.4(vite@5.4.10(@types/node@22.9.0))': dependencies: - '@vitest/spy': 2.1.3 + '@vitest/spy': 2.1.4 estree-walker: 3.0.3 magic-string: 0.30.12 optionalDependencies: - vite: 5.4.10(@types/node@22.8.1) + vite: 5.4.10(@types/node@22.9.0) - '@vitest/pretty-format@2.1.3': + '@vitest/pretty-format@2.1.4': dependencies: tinyrainbow: 1.2.0 - '@vitest/runner@2.1.3': + '@vitest/runner@2.1.4': dependencies: - '@vitest/utils': 2.1.3 + '@vitest/utils': 2.1.4 pathe: 1.1.2 - '@vitest/snapshot@2.1.3': + '@vitest/snapshot@2.1.4': dependencies: - '@vitest/pretty-format': 2.1.3 + '@vitest/pretty-format': 2.1.4 magic-string: 0.30.12 pathe: 1.1.2 - '@vitest/spy@2.1.3': + '@vitest/spy@2.1.4': dependencies: tinyspy: 3.0.2 - '@vitest/utils@2.1.3': + '@vitest/utils@2.1.4': dependencies: - '@vitest/pretty-format': 2.1.3 + '@vitest/pretty-format': 2.1.4 loupe: 3.1.2 tinyrainbow: 1.2.0 @@ -4168,7 +4177,7 @@ snapshots: '@vscode/vsce-sign-win32-x64@2.0.2': optional: true - '@vscode/vsce-sign@2.0.4': + '@vscode/vsce-sign@2.0.5': optionalDependencies: '@vscode/vsce-sign-alpine-arm64': 2.0.2 '@vscode/vsce-sign-alpine-x64': 2.0.2 @@ -4183,7 +4192,7 @@ snapshots: '@vscode/vsce@3.2.1': dependencies: '@azure/identity': 4.5.0 - '@vscode/vsce-sign': 2.0.4 + '@vscode/vsce-sign': 2.0.5 azure-devops-node-api: 12.5.0 chalk: 2.4.2 cheerio: 1.0.0 @@ -4392,7 +4401,7 @@ snapshots: domutils: 3.1.0 encoding-sniffer: 0.2.0 htmlparser2: 9.1.0 - parse5: 7.2.0 + parse5: 7.2.1 parse5-htmlparser2-tree-adapter: 7.1.0 parse5-parser-stream: 7.1.2 undici: 6.20.1 @@ -4794,6 +4803,8 @@ snapshots: expand-template@2.0.3: optional: true + expect-type@1.1.0: {} + exponential-backoff@3.1.1: {} fast-glob@3.3.2: @@ -5259,7 +5270,7 @@ snapshots: lru-cache@10.4.3: {} - lru-cache@11.0.1: {} + lru-cache@11.0.2: {} lru-cache@6.0.0: dependencies: @@ -5603,14 +5614,14 @@ snapshots: parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.25.9 + '@babel/code-frame': 7.26.2 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 parse-json@7.1.1: dependencies: - '@babel/code-frame': 7.25.9 + '@babel/code-frame': 7.26.2 error-ex: 1.3.2 json-parse-even-better-errors: 3.0.2 lines-and-columns: 2.0.4 @@ -5618,7 +5629,7 @@ snapshots: parse-json@8.1.0: dependencies: - '@babel/code-frame': 7.25.9 + '@babel/code-frame': 7.26.2 index-to-position: 0.1.2 type-fest: 4.26.1 @@ -5637,13 +5648,13 @@ snapshots: parse5-htmlparser2-tree-adapter@7.1.0: dependencies: domhandler: 5.0.3 - parse5: 7.2.0 + parse5: 7.2.1 parse5-parser-stream@7.1.2: dependencies: - parse5: 7.2.0 + parse5: 7.2.1 - parse5@7.2.0: + parse5@7.2.1: dependencies: entities: 4.5.0 @@ -5664,7 +5675,7 @@ snapshots: path-scurry@2.0.0: dependencies: - lru-cache: 11.0.1 + lru-cache: 11.0.2 minipass: 7.1.2 path-type@4.0.0: {} @@ -5814,26 +5825,28 @@ snapshots: reusify@1.0.4: {} - rollup@4.24.0: + rollup@4.24.4: dependencies: '@types/estree': 1.0.6 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.24.0 - '@rollup/rollup-android-arm64': 4.24.0 - '@rollup/rollup-darwin-arm64': 4.24.0 - '@rollup/rollup-darwin-x64': 4.24.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.24.0 - '@rollup/rollup-linux-arm-musleabihf': 4.24.0 - '@rollup/rollup-linux-arm64-gnu': 4.24.0 - '@rollup/rollup-linux-arm64-musl': 4.24.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.24.0 - '@rollup/rollup-linux-riscv64-gnu': 4.24.0 - '@rollup/rollup-linux-s390x-gnu': 4.24.0 - '@rollup/rollup-linux-x64-gnu': 4.24.0 - '@rollup/rollup-linux-x64-musl': 4.24.0 - '@rollup/rollup-win32-arm64-msvc': 4.24.0 - '@rollup/rollup-win32-ia32-msvc': 4.24.0 - '@rollup/rollup-win32-x64-msvc': 4.24.0 + '@rollup/rollup-android-arm-eabi': 4.24.4 + '@rollup/rollup-android-arm64': 4.24.4 + '@rollup/rollup-darwin-arm64': 4.24.4 + '@rollup/rollup-darwin-x64': 4.24.4 + '@rollup/rollup-freebsd-arm64': 4.24.4 + '@rollup/rollup-freebsd-x64': 4.24.4 + '@rollup/rollup-linux-arm-gnueabihf': 4.24.4 + '@rollup/rollup-linux-arm-musleabihf': 4.24.4 + '@rollup/rollup-linux-arm64-gnu': 4.24.4 + '@rollup/rollup-linux-arm64-musl': 4.24.4 + '@rollup/rollup-linux-powerpc64le-gnu': 4.24.4 + '@rollup/rollup-linux-riscv64-gnu': 4.24.4 + '@rollup/rollup-linux-s390x-gnu': 4.24.4 + '@rollup/rollup-linux-x64-gnu': 4.24.4 + '@rollup/rollup-linux-x64-musl': 4.24.4 + '@rollup/rollup-win32-arm64-msvc': 4.24.4 + '@rollup/rollup-win32-ia32-msvc': 4.24.4 + '@rollup/rollup-win32-x64-msvc': 4.24.4 fsevents: 2.3.3 run-parallel@1.2.0: @@ -6076,7 +6089,7 @@ snapshots: treeverse@3.0.0: {} - tslib@2.8.0: {} + tslib@2.8.1: {} tuf-js@2.2.1: dependencies: @@ -6151,12 +6164,12 @@ snapshots: validate-npm-package-name@5.0.1: {} - vite-node@2.1.3(@types/node@22.8.1): + vite-node@2.1.4(@types/node@22.9.0): dependencies: cac: 6.7.14 debug: 4.3.7 pathe: 1.1.2 - vite: 5.4.10(@types/node@22.8.1) + vite: 5.4.10(@types/node@22.9.0) transitivePeerDependencies: - '@types/node' - less @@ -6168,26 +6181,27 @@ snapshots: - supports-color - terser - vite@5.4.10(@types/node@22.8.1): + vite@5.4.10(@types/node@22.9.0): dependencies: esbuild: 0.21.5 postcss: 8.4.47 - rollup: 4.24.0 + rollup: 4.24.4 optionalDependencies: - '@types/node': 22.8.1 + '@types/node': 22.9.0 fsevents: 2.3.3 - vitest@2.1.3(@types/node@22.8.1): + vitest@2.1.4(@types/node@22.9.0): dependencies: - '@vitest/expect': 2.1.3 - '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.4.10(@types/node@22.8.1)) - '@vitest/pretty-format': 2.1.3 - '@vitest/runner': 2.1.3 - '@vitest/snapshot': 2.1.3 - '@vitest/spy': 2.1.3 - '@vitest/utils': 2.1.3 + '@vitest/expect': 2.1.4 + '@vitest/mocker': 2.1.4(vite@5.4.10(@types/node@22.9.0)) + '@vitest/pretty-format': 2.1.4 + '@vitest/runner': 2.1.4 + '@vitest/snapshot': 2.1.4 + '@vitest/spy': 2.1.4 + '@vitest/utils': 2.1.4 chai: 5.1.2 debug: 4.3.7 + expect-type: 1.1.0 magic-string: 0.30.12 pathe: 1.1.2 std-env: 3.7.0 @@ -6195,11 +6209,11 @@ snapshots: tinyexec: 0.3.1 tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.4.10(@types/node@22.8.1) - vite-node: 2.1.3(@types/node@22.8.1) + vite: 5.4.10(@types/node@22.9.0) + vite-node: 2.1.4(@types/node@22.9.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 22.8.1 + '@types/node': 22.9.0 transitivePeerDependencies: - less - lightningcss diff --git a/tsslint.config.ts b/tsslint.config.ts index fb114cce..747bf512 100644 --- a/tsslint.config.ts +++ b/tsslint.config.ts @@ -1,457 +1 @@ -import type { Rules } from '@tsslint/config'; -import type * as ts from 'typescript'; -// @ts-ignore -import * as path from 'node:path'; - -export default { - rules: getDefaultRules(), -}; - -export function getDefaultRules(): Rules { - return { - /** - * @example - * ```diff - * interface MyInterface { - * - prop: string, - * + prop: string; - * } - * ``` - */ - 'format/interface-property-semicolon'({ typescript: ts, sourceFile, reportWarning }) { - const { text } = sourceFile; - ts.forEachChild(sourceFile, function visit(node) { - if (ts.isInterfaceDeclaration(node)) { - for (const member of node.members) { - if (text[member.end - 1] !== ';') { - reportWarning( - `Interface properties should end with a semicolon.`, - member.getStart(sourceFile), - member.getEnd() - ).withFix( - 'Replace comma with semicolon', - () => [{ - fileName: sourceFile.fileName, - textChanges: [{ - newText: ';', - span: { - start: member.end - 1, - length: 1, - }, - }], - }] - ); - } - } - } - ts.forEachChild(node, visit); - }); - }, - /** - * @example - * ```diff - * - if (foo) bar(); - * + if (foo) { - * + bar(); - * + } - * ``` - */ - 'format/braces-around-statements'({ typescript: ts, sourceFile, reportWarning }) { - ts.forEachChild(sourceFile, function visit(node) { - if (ts.isIfStatement(node)) { - if (!ts.isBlock(node.thenStatement)) { - reportWithFix(node.thenStatement); - } - if (node.elseStatement && !ts.isIfStatement(node.elseStatement) && !ts.isBlock(node.elseStatement)) { - reportWithFix(node.elseStatement); - } - } - // @ts-expect-error - else if ('statement' in node && ts.isStatement(node.statement)) { - const statement = node.statement; - if (!ts.isBlock(node.statement)) { - reportWithFix(statement); - } - } - ts.forEachChild(node, visit); - }); - function reportWithFix(statement: ts.Statement) { - reportWarning( - `Statements should be wrapped in braces.`, - statement.getStart(sourceFile), - statement.getEnd() - ).withFix( - 'Add braces around the statement', - () => [{ - fileName: sourceFile.fileName, - textChanges: [ - { - newText: isSameLine(statement) - ? ' {\n' - : ' {', - span: { - start: statement.getFullStart(), - length: 0, - }, - }, - { - newText: '\n}', - span: { - start: - ts.getTrailingCommentRanges( - sourceFile.text, - statement.getEnd() - )?.reverse()?.[0]?.end - ?? statement.getEnd(), - length: 0, - }, - } - ], - }] - ); - } - function isSameLine(node: ts.Node) { - return ts.getLineAndCharacterOfPosition(sourceFile, node.getFullStart()).line - === ts.getLineAndCharacterOfPosition(sourceFile, node.parent.getEnd()).line; - } - }, - /** - * @example - * ```diff - * - const foo = (bar) => {}; - * + const foo = bar => {}; - * ``` - */ - 'format/arrow-parens'({ typescript: ts, sourceFile, reportWarning }) { - ts.forEachChild(sourceFile, function visit(node) { - if ( - ts.isArrowFunction(node) - && node.parameters.length === 1 - && !node.type - ) { - const parameter = node.parameters[0]; - if ( - ts.isIdentifier(parameter.name) - && !parameter.type - && !parameter.dotDotDotToken - && !parameter.initializer - && sourceFile.text[parameter.getStart(sourceFile) - 1] === '(' - && sourceFile.text[parameter.getEnd()] === ')' - ) { - reportWarning( - `Parentheses should be omitted.`, - parameter.getStart(sourceFile), - parameter.getEnd() - ).withFix( - 'Remove parentheses around the parameter', - () => [{ - fileName: sourceFile.fileName, - textChanges: [ - { - newText: '', - span: { - start: parameter.getStart(sourceFile) - 1, - length: 1, - }, - }, - { - newText: '', - span: { - start: parameter.getEnd(), - length: 1, - }, - } - ], - }] - ); - } - } - ts.forEachChild(node, visit); - }); - }, - 'format/need-format'({ typescript: ts, sourceFile, languageService, reportWarning }) { - const textChanges = languageService.getFormattingEditsForDocument(sourceFile.fileName, { - ...ts.getDefaultFormatCodeSettings(), - convertTabsToSpaces: false, - tabSize: 4, - indentSize: 4, - indentStyle: ts.IndentStyle.Smart, - newLineCharacter: '\n', - insertSpaceAfterCommaDelimiter: true, - insertSpaceAfterConstructor: false, - insertSpaceAfterSemicolonInForStatements: true, - insertSpaceBeforeAndAfterBinaryOperators: true, - insertSpaceAfterKeywordsInControlFlowStatements: true, - insertSpaceAfterFunctionKeywordForAnonymousFunctions: true, - insertSpaceBeforeFunctionParenthesis: false, - insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis: false, - insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets: false, - insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces: true, - insertSpaceAfterOpeningAndBeforeClosingEmptyBraces: true, - insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces: false, - insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces: false, - insertSpaceAfterTypeAssertion: false, - placeOpenBraceOnNewLineForFunctions: false, - placeOpenBraceOnNewLineForControlBlocks: false, - semicolons: ts.SemicolonPreference.Ignore, - }); - for (const textChange of textChanges) { - const originalText = sourceFile.text.slice(textChange.span.start, textChange.span.start + textChange.span.length); - if (originalText !== textChange.newText) { - reportWarning( - `The document is not formatted.`, - textChange.span.start, - textChange.span.start + textChange.span.length - ).withFix( - 'Format the file', - () => [{ - fileName: sourceFile.fileName, - textChanges: [textChange], - }] - ); - } - } - }, - 'format/no-trailing-comma-in-function'({ typescript: ts, sourceFile, reportWarning }) { - const { text } = sourceFile; - ts.forEachChild(sourceFile, function visit(node) { - if (ts.isFunctionDeclaration(node) || ts.isArrowFunction(node) || ts.isMethodDeclaration(node)) { - const parameters = node.parameters; - if (parameters.length > 0) { - const lastParameter = parameters[parameters.length - 1]; - const nextCharIndex = lastParameter.end; - if (text[nextCharIndex] === ',') { - reportWarning( - `The last parameter of a function should not have a trailing comma.`, - lastParameter.getStart(sourceFile), - lastParameter.getEnd() - ).withFix( - 'Remove trailing comma', - () => [{ - fileName: sourceFile.fileName, - textChanges: [{ - span: { start: nextCharIndex, length: 1 }, - newText: '' - }] - }] - ); - } - } - } - ts.forEachChild(node, visit); - }); - }, - 'format/no-trailing-comma-in-function-call'({ typescript: ts, sourceFile, reportWarning }) { - const { text } = sourceFile; - ts.forEachChild(sourceFile, function visit(node) { - if (ts.isCallExpression(node)) { - if (node.arguments.length > 0) { - const lastArgument = node.arguments[node.arguments.length - 1]; - const nextCharIndex = lastArgument.end; - if (text[nextCharIndex] === ',') { - reportWarning( - `The last argument of a function call should not have a trailing comma.`, - lastArgument.getStart(sourceFile), - lastArgument.getEnd() - ).withFix( - 'Remove trailing comma', - () => [{ - fileName: sourceFile.fileName, - textChanges: [{ - span: { start: nextCharIndex, length: 1 }, - newText: '' - }] - }] - ); - } - } - } - ts.forEachChild(node, visit); - }); - }, - 'missing-dependency'({ typescript: ts, sourceFile, reportError, languageServiceHost }) { - const { noEmit } = languageServiceHost.getCompilationSettings(); - if (noEmit) { - return; - } - const packageJsonPath = ts.findConfigFile(sourceFile.fileName, ts.sys.fileExists, 'package.json'); - if (!packageJsonPath) { - return; - } - const packageJson = JSON.parse(ts.sys.readFile(packageJsonPath) ?? ''); - const parentPackageJsonPath = ts.findConfigFile(path.dirname(path.dirname(packageJsonPath)), ts.sys.fileExists, 'package.json'); - const parentPackageJson = !!parentPackageJsonPath && parentPackageJsonPath !== packageJsonPath - ? JSON.parse(ts.sys.readFile(parentPackageJsonPath) ?? '') - : {}; - ts.forEachChild(sourceFile, function visit(node) { - if ( - ts.isImportDeclaration(node) - && !node.importClause?.isTypeOnly - && ts.isStringLiteral(node.moduleSpecifier) - && !node.moduleSpecifier.text.startsWith('./') - && !node.moduleSpecifier.text.startsWith('../') - ) { - let moduleName = node.moduleSpecifier.text.split('/')[0]; - if (moduleName.startsWith('@')) { - moduleName += '/' + node.moduleSpecifier.text.split('/')[1]; - } - if ( - ( - packageJson.devDependencies?.[moduleName] - || parentPackageJson.dependencies?.[moduleName] - || parentPackageJson.devDependencies?.[moduleName] - || parentPackageJson.peerDependencies?.[moduleName] - ) - && !packageJson.dependencies?.[moduleName] - && !packageJson.peerDependencies?.[moduleName] - ) { - reportError( - `Module '${moduleName}' should be in the dependencies.`, - node.getStart(sourceFile), - node.getEnd() - ); - } - } - ts.forEachChild(node, visit); - }); - }, - /** - * TODO: fix the case - * let foo: Foo; - * foo!.bar(); - * ^^^^ should not report - */ - 'no-unnecessary-non-null-assertion'({ typescript: ts, sourceFile, languageService, reportWarning }) { - ts.forEachChild(sourceFile, function visit(node) { - if (ts.isNonNullExpression(node)) { - const typeChecker = languageService.getProgram()!.getTypeChecker(); - const type = typeChecker.getTypeAtLocation(node.expression); - if ( - typeChecker.typeToString(type, undefined, ts.TypeFormatFlags.NoTruncation) - === typeChecker.typeToString(type.getNonNullableType(), undefined, ts.TypeFormatFlags.NoTruncation) - ) { - reportWarning( - `Unnecessary non-null assertion.`, - node.getStart(sourceFile), - node.getEnd() - ).withFix( - 'Remove unnecessary non-null assertion', - () => [{ - fileName: sourceFile.fileName, - textChanges: [ - { - newText: '', - span: { - start: node.expression.getEnd(), - length: node.getEnd() - node.expression.getEnd(), - }, - } - ], - }] - ); - } - } - ts.forEachChild(node, visit); - }); - }, - /** - * @example - * ```diff - * console.log(obj.prop); // used - * - obj.prop; // unused - * ``` - */ - 'no-unused-property-access'({ typescript: ts, sourceFile, reportWarning }) { - ts.forEachChild(sourceFile, function visit(node) { - if (ts.isPropertyAccessExpression(node)) { - const parent = node.parent; - if (ts.isExpressionStatement(parent)) { - reportWarning( - `Property '${node.name.text}' is accessed but not used.`, - node.getStart(sourceFile), - node.getEnd() - ).withFix( - 'Remove unused property access', - () => [{ - fileName: sourceFile.fileName, - textChanges: [ - { - newText: '', - span: { - start: parent.getStart(sourceFile), - length: parent.getEnd() - parent.getStart(sourceFile), - }, - } - ], - }] - ); - } - } - ts.forEachChild(node, visit); - }); - }, - 'no-unused-variable-access'({ typescript: ts, sourceFile, reportWarning }) { - ts.forEachChild(sourceFile, function visit(node) { - if (ts.isIdentifier(node)) { - const parent = node.parent; - if (ts.isExpressionStatement(parent)) { - reportWarning( - `Variable '${node.text}' is accessed but not used.`, - node.getStart(sourceFile), - node.getEnd() - ).withFix( - 'Remove unused variable access', - () => [{ - fileName: sourceFile.fileName, - textChanges: [ - { - newText: '', - span: { - start: parent.getStart(sourceFile), - length: parent.getEnd() - parent.getStart(sourceFile), - }, - } - ], - }] - ); - } - } - ts.forEachChild(node, visit); - }); - }, - 'no-async-without-await'({ typescript: ts, sourceFile, reportWarning }) { - ts.forEachChild(sourceFile, function visit(node) { - if (ts.isFunctionDeclaration(node) || ts.isArrowFunction(node) || ts.isMethodDeclaration(node)) { - const awaitModifer = node.modifiers?.find(modifier => modifier.kind === ts.SyntaxKind.AsyncKeyword); - if (awaitModifer && node.body) { - let hasAwait = false; - ts.forEachChild(node.body, function visit(node) { - hasAwait ||= ts.isAwaitExpression(node); - ts.forEachChild(node, visit); - }); - if (!hasAwait) { - reportWarning( - `Function is declared as async but does not use await.`, - awaitModifer.getStart(sourceFile), - awaitModifer.getEnd() - ).withFix( - 'Remove async modifier', - () => [{ - fileName: sourceFile.fileName, - textChanges: [{ - span: { - start: awaitModifer.getStart(sourceFile), - length: awaitModifer.getEnd() - awaitModifer.getStart(sourceFile), - }, - newText: '' - }] - }] - ); - } - } - } - ts.forEachChild(node, visit); - }); - }, - }; -} +export { default } from 'https://raw.githubusercontent.com/johnsoncodehk/tsslint-config/refs/heads/master/v1.1.cjs'; From e242709a91e9d2919dc4fa59278dd266fd11e7a3 Mon Sep 17 00:00:00 2001 From: Johnson Chu Date: Thu, 7 Nov 2024 05:22:23 +0800 Subject: [PATCH 4/6] fix(typescript): avoid crash when converting relatedInformation from overly large files --- .../createAsyncLanguageServicePlugin.ts | 26 ++++++++++--------- .../quickstart/createLanguageServicePlugin.ts | 26 ++++++++++--------- 2 files changed, 28 insertions(+), 24 deletions(-) diff --git a/packages/typescript/lib/quickstart/createAsyncLanguageServicePlugin.ts b/packages/typescript/lib/quickstart/createAsyncLanguageServicePlugin.ts index bb0aa243..ecad5679 100644 --- a/packages/typescript/lib/quickstart/createAsyncLanguageServicePlugin.ts +++ b/packages/typescript/lib/quickstart/createAsyncLanguageServicePlugin.ts @@ -82,18 +82,20 @@ export function createAsyncLanguageServicePlugin( ], new FileMap(ts.sys.useCaseSensitiveFileNames), fileName => { - let snapshot = info.project.getScriptInfo(fileName)?.getSnapshot(); - if (!snapshot) { - // trigger projectService.getOrCreateScriptInfoNotOpenedByClient - info.project.getScriptVersion(fileName); - snapshot = info.project.getScriptInfo(fileName)?.getSnapshot(); - } - if (snapshot) { - language.scripts.set(fileName, snapshot); - } - else { - language.scripts.delete(fileName); - } + try { // getSnapshot could be crashed if the file is too large + let snapshot = info.project.getScriptInfo(fileName)?.getSnapshot(); + if (!snapshot) { + // trigger projectService.getOrCreateScriptInfoNotOpenedByClient + info.project.getScriptVersion(fileName); + snapshot = info.project.getScriptInfo(fileName)?.getSnapshot(); + } + if (snapshot) { + language.scripts.set(fileName, snapshot); + } + else { + language.scripts.delete(fileName); + } + } catch { } } ); diff --git a/packages/typescript/lib/quickstart/createLanguageServicePlugin.ts b/packages/typescript/lib/quickstart/createLanguageServicePlugin.ts index 725a2777..f03447b6 100644 --- a/packages/typescript/lib/quickstart/createLanguageServicePlugin.ts +++ b/packages/typescript/lib/quickstart/createLanguageServicePlugin.ts @@ -41,18 +41,20 @@ export function createLanguageServicePlugin( ], new FileMap(ts.sys.useCaseSensitiveFileNames), fileName => { - let snapshot = info.project.getScriptInfo(fileName)?.getSnapshot(); - if (!snapshot) { - // trigger projectService.getOrCreateScriptInfoNotOpenedByClient - info.project.getScriptVersion(fileName); - snapshot = info.project.getScriptInfo(fileName)?.getSnapshot(); - } - if (snapshot) { - language.scripts.set(fileName, snapshot); - } - else { - language.scripts.delete(fileName); - } + try { // getSnapshot could be crashed if the file is too large + let snapshot = info.project.getScriptInfo(fileName)?.getSnapshot(); + if (!snapshot) { + // trigger projectService.getOrCreateScriptInfoNotOpenedByClient + info.project.getScriptVersion(fileName); + snapshot = info.project.getScriptInfo(fileName)?.getSnapshot(); + } + if (snapshot) { + language.scripts.set(fileName, snapshot); + } + else { + language.scripts.delete(fileName); + } + } catch { } } ); From 0db88c31f196f77e976d7e86eaa46d43e18ca5b0 Mon Sep 17 00:00:00 2001 From: Johnson Chu Date: Thu, 7 Nov 2024 05:23:54 +0800 Subject: [PATCH 5/6] chore: changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd00e387..df4c0848 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [2.4.9](https://github.com/volarjs/volar.js/compare/v2.4.8...v2.4.9) (2024-11-07) + +### Bug Fixes + +- **typescript:** avoid crash when converting relatedInformation from overly large files + ## [2.4.8](https://github.com/volarjs/volar.js/compare/v2.4.7...v2.4.8) (2024-10-26) ### Bug Fixes From 798b36aa660a3831dcc79a5fb7c024f64d4748db Mon Sep 17 00:00:00 2001 From: Johnson Chu Date: Thu, 7 Nov 2024 05:24:33 +0800 Subject: [PATCH 6/6] v2.4.9 --- extensions/labs/package.json | 8 +- lerna.json | 2 +- packages/eslint/package.json | 4 +- packages/jsdelivr/package.json | 4 +- packages/kit/package.json | 6 +- packages/language-core/package.json | 4 +- packages/language-server/package.json | 8 +- packages/language-service/package.json | 4 +- packages/monaco/package.json | 6 +- packages/source-map/package.json | 2 +- packages/test-utils/package.json | 6 +- packages/typescript/package.json | 6 +- packages/vscode/package.json | 4 +- pnpm-lock.yaml | 322 +++---------------------- 14 files changed, 69 insertions(+), 317 deletions(-) diff --git a/extensions/labs/package.json b/extensions/labs/package.json index 1f9b080a..17ab54ae 100644 --- a/extensions/labs/package.json +++ b/extensions/labs/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "volarjs-labs", - "version": "2.4.8", + "version": "2.4.9", "repository": { "type": "git", "url": "https://github.com/volarjs/volar.js.git", @@ -67,9 +67,9 @@ "devDependencies": { "@types/node": "latest", "@types/vscode": "^1.82.0", - "@volar/language-server": "2.4.8", - "@volar/source-map": "2.4.8", - "@volar/vscode": "2.4.8", + "@volar/language-server": "2.4.9", + "@volar/source-map": "2.4.9", + "@volar/vscode": "2.4.9", "@vscode/vsce": "latest", "esbuild": "latest", "esbuild-plugin-copy": "latest", diff --git a/lerna.json b/lerna.json index e4ae3e60..28612b61 100644 --- a/lerna.json +++ b/lerna.json @@ -5,5 +5,5 @@ "extensions/*", "packages/*" ], - "version": "2.4.8" + "version": "2.4.9" } diff --git a/packages/eslint/package.json b/packages/eslint/package.json index fdc37a5e..c83a3256 100644 --- a/packages/eslint/package.json +++ b/packages/eslint/package.json @@ -1,6 +1,6 @@ { "name": "@volar/eslint", - "version": "2.4.8", + "version": "2.4.9", "license": "MIT", "files": [ "**/*.js", @@ -13,7 +13,7 @@ }, "dependencies": { "@types/eslint": "^8.56.10", - "@volar/language-core": "2.4.8", + "@volar/language-core": "2.4.9", "vscode-languageserver-textdocument": "^1.0.11" } } diff --git a/packages/jsdelivr/package.json b/packages/jsdelivr/package.json index 0e6131ca..7f4122c9 100644 --- a/packages/jsdelivr/package.json +++ b/packages/jsdelivr/package.json @@ -1,6 +1,6 @@ { "name": "@volar/jsdelivr", - "version": "2.4.8", + "version": "2.4.9", "license": "MIT", "files": [ "**/*.js", @@ -12,7 +12,7 @@ "directory": "packages/jsdelivr" }, "devDependencies": { - "@volar/language-service": "2.4.8", + "@volar/language-service": "2.4.9", "vscode-uri": "^3.0.8" } } diff --git a/packages/kit/package.json b/packages/kit/package.json index 0d07ac03..28dfe4d2 100644 --- a/packages/kit/package.json +++ b/packages/kit/package.json @@ -1,6 +1,6 @@ { "name": "@volar/kit", - "version": "2.4.8", + "version": "2.4.9", "license": "MIT", "files": [ "**/*.js", @@ -12,8 +12,8 @@ "directory": "packages/kit" }, "dependencies": { - "@volar/language-service": "2.4.8", - "@volar/typescript": "2.4.8", + "@volar/language-service": "2.4.9", + "@volar/typescript": "2.4.9", "typesafe-path": "^0.2.2", "vscode-languageserver-textdocument": "^1.0.11", "vscode-uri": "^3.0.8" diff --git a/packages/language-core/package.json b/packages/language-core/package.json index ee889aa4..95445f04 100644 --- a/packages/language-core/package.json +++ b/packages/language-core/package.json @@ -1,6 +1,6 @@ { "name": "@volar/language-core", - "version": "2.4.8", + "version": "2.4.9", "license": "MIT", "files": [ "**/*.js", @@ -12,6 +12,6 @@ "directory": "packages/language-core" }, "dependencies": { - "@volar/source-map": "2.4.8" + "@volar/source-map": "2.4.9" } } diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 07b2303d..2086a92d 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@volar/language-server", - "version": "2.4.8", + "version": "2.4.9", "license": "MIT", "files": [ "**/*.js", @@ -12,9 +12,9 @@ "directory": "packages/language-server" }, "dependencies": { - "@volar/language-core": "2.4.8", - "@volar/language-service": "2.4.8", - "@volar/typescript": "2.4.8", + "@volar/language-core": "2.4.9", + "@volar/language-service": "2.4.9", + "@volar/typescript": "2.4.9", "path-browserify": "^1.0.1", "request-light": "^0.7.0", "vscode-languageserver": "^9.0.1", diff --git a/packages/language-service/package.json b/packages/language-service/package.json index 979a0ce9..71fe637e 100644 --- a/packages/language-service/package.json +++ b/packages/language-service/package.json @@ -1,6 +1,6 @@ { "name": "@volar/language-service", - "version": "2.4.8", + "version": "2.4.9", "license": "MIT", "files": [ "**/*.js", @@ -12,7 +12,7 @@ "directory": "packages/language-service" }, "dependencies": { - "@volar/language-core": "2.4.8", + "@volar/language-core": "2.4.9", "vscode-languageserver-protocol": "^3.17.5", "vscode-languageserver-textdocument": "^1.0.11", "vscode-uri": "^3.0.8" diff --git a/packages/monaco/package.json b/packages/monaco/package.json index 6132c3fb..01710f71 100644 --- a/packages/monaco/package.json +++ b/packages/monaco/package.json @@ -1,6 +1,6 @@ { "name": "@volar/monaco", - "version": "2.4.8", + "version": "2.4.9", "license": "MIT", "type": "module", "files": [ @@ -13,8 +13,8 @@ "directory": "packages/monaco" }, "dependencies": { - "@volar/language-service": "2.4.8", - "@volar/typescript": "2.4.8", + "@volar/language-service": "2.4.9", + "@volar/typescript": "2.4.9", "monaco-languageserver-types": "^0.4.0", "monaco-types": "^0.1.0", "vscode-uri": "^3.0.8" diff --git a/packages/source-map/package.json b/packages/source-map/package.json index 571d87ea..b56566a5 100644 --- a/packages/source-map/package.json +++ b/packages/source-map/package.json @@ -1,6 +1,6 @@ { "name": "@volar/source-map", - "version": "2.4.8", + "version": "2.4.9", "license": "MIT", "files": [ "**/*.js", diff --git a/packages/test-utils/package.json b/packages/test-utils/package.json index e5785a7a..943ac4ce 100644 --- a/packages/test-utils/package.json +++ b/packages/test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@volar/test-utils", - "version": "2.4.8", + "version": "2.4.9", "license": "MIT", "files": [ "**/*.js", @@ -15,8 +15,8 @@ "@types/node": "latest" }, "dependencies": { - "@volar/language-core": "2.4.8", - "@volar/language-server": "2.4.8", + "@volar/language-core": "2.4.9", + "@volar/language-server": "2.4.9", "vscode-languageserver-textdocument": "^1.0.11", "vscode-uri": "^3.0.8" } diff --git a/packages/typescript/package.json b/packages/typescript/package.json index c50822b8..a0afa9b8 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@volar/typescript", - "version": "2.4.8", + "version": "2.4.9", "license": "MIT", "files": [ "**/*.js", @@ -12,13 +12,13 @@ "directory": "packages/typescript" }, "dependencies": { - "@volar/language-core": "2.4.8", + "@volar/language-core": "2.4.9", "path-browserify": "^1.0.1", "vscode-uri": "^3.0.8" }, "devDependencies": { "@types/node": "latest", "@types/path-browserify": "latest", - "@volar/language-service": "2.4.8" + "@volar/language-service": "2.4.9" } } diff --git a/packages/vscode/package.json b/packages/vscode/package.json index ea2d6ef8..0ba8e015 100644 --- a/packages/vscode/package.json +++ b/packages/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@volar/vscode", - "version": "2.4.8", + "version": "2.4.9", "license": "MIT", "files": [ "**/*.js", @@ -12,7 +12,7 @@ "directory": "packages/vscode" }, "dependencies": { - "@volar/language-server": "2.4.8", + "@volar/language-server": "2.4.9", "path-browserify": "^1.0.1", "vscode-languageclient": "^9.0.1", "vscode-nls": "^5.2.0" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2299d3cd..bc6d4628 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,7 +16,7 @@ importers: version: 3.10.0(@types/node@22.9.0)(typescript@5.6.3) '@tsslint/cli': specifier: latest - version: 1.1.2(typescript@5.6.3) + version: 1.1.3(typescript@5.6.3) typescript: specifier: latest version: 5.6.3 @@ -36,13 +36,13 @@ importers: specifier: ^1.82.0 version: 1.95.0 '@volar/language-server': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../../packages/language-server '@volar/source-map': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../../packages/source-map '@volar/vscode': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../../packages/vscode '@vscode/vsce': specifier: latest @@ -63,7 +63,7 @@ importers: specifier: ^8.56.10 version: 8.56.12 '@volar/language-core': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../language-core vscode-languageserver-textdocument: specifier: ^1.0.11 @@ -72,7 +72,7 @@ importers: packages/jsdelivr: devDependencies: '@volar/language-service': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../language-service vscode-uri: specifier: ^3.0.8 @@ -81,10 +81,10 @@ importers: packages/kit: dependencies: '@volar/language-service': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../language-service '@volar/typescript': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../typescript typesafe-path: specifier: ^0.2.2 @@ -106,19 +106,19 @@ importers: packages/language-core: dependencies: '@volar/source-map': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../source-map packages/language-server: dependencies: '@volar/language-core': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../language-core '@volar/language-service': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../language-service '@volar/typescript': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../typescript path-browserify: specifier: ^1.0.1 @@ -146,7 +146,7 @@ importers: packages/language-service: dependencies: '@volar/language-core': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../language-core vscode-languageserver-protocol: specifier: ^3.17.5 @@ -161,10 +161,10 @@ importers: packages/monaco: dependencies: '@volar/language-service': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../language-service '@volar/typescript': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../typescript monaco-languageserver-types: specifier: ^0.4.0 @@ -185,10 +185,10 @@ importers: packages/test-utils: dependencies: '@volar/language-core': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../language-core '@volar/language-server': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../language-server vscode-languageserver-textdocument: specifier: ^1.0.11 @@ -204,7 +204,7 @@ importers: packages/typescript: dependencies: '@volar/language-core': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../language-core path-browserify: specifier: ^1.0.1 @@ -220,13 +220,13 @@ importers: specifier: latest version: 1.0.3 '@volar/language-service': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../language-service packages/vscode: dependencies: '@volar/language-server': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../language-server path-browserify: specifier: ^1.0.1 @@ -316,12 +316,6 @@ packages: cpu: [ppc64] os: [aix] - '@esbuild/aix-ppc64@0.23.1': - resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [aix] - '@esbuild/aix-ppc64@0.24.0': resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==} engines: {node: '>=18'} @@ -334,12 +328,6 @@ packages: cpu: [arm64] os: [android] - '@esbuild/android-arm64@0.23.1': - resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==} - engines: {node: '>=18'} - cpu: [arm64] - os: [android] - '@esbuild/android-arm64@0.24.0': resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==} engines: {node: '>=18'} @@ -352,12 +340,6 @@ packages: cpu: [arm] os: [android] - '@esbuild/android-arm@0.23.1': - resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==} - engines: {node: '>=18'} - cpu: [arm] - os: [android] - '@esbuild/android-arm@0.24.0': resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==} engines: {node: '>=18'} @@ -370,12 +352,6 @@ packages: cpu: [x64] os: [android] - '@esbuild/android-x64@0.23.1': - resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==} - engines: {node: '>=18'} - cpu: [x64] - os: [android] - '@esbuild/android-x64@0.24.0': resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==} engines: {node: '>=18'} @@ -388,12 +364,6 @@ packages: cpu: [arm64] os: [darwin] - '@esbuild/darwin-arm64@0.23.1': - resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==} - engines: {node: '>=18'} - cpu: [arm64] - os: [darwin] - '@esbuild/darwin-arm64@0.24.0': resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==} engines: {node: '>=18'} @@ -406,12 +376,6 @@ packages: cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.23.1': - resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==} - engines: {node: '>=18'} - cpu: [x64] - os: [darwin] - '@esbuild/darwin-x64@0.24.0': resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==} engines: {node: '>=18'} @@ -424,12 +388,6 @@ packages: cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-arm64@0.23.1': - resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==} - engines: {node: '>=18'} - cpu: [arm64] - os: [freebsd] - '@esbuild/freebsd-arm64@0.24.0': resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==} engines: {node: '>=18'} @@ -442,12 +400,6 @@ packages: cpu: [x64] os: [freebsd] - '@esbuild/freebsd-x64@0.23.1': - resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==} - engines: {node: '>=18'} - cpu: [x64] - os: [freebsd] - '@esbuild/freebsd-x64@0.24.0': resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==} engines: {node: '>=18'} @@ -460,12 +412,6 @@ packages: cpu: [arm64] os: [linux] - '@esbuild/linux-arm64@0.23.1': - resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==} - engines: {node: '>=18'} - cpu: [arm64] - os: [linux] - '@esbuild/linux-arm64@0.24.0': resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==} engines: {node: '>=18'} @@ -478,12 +424,6 @@ packages: cpu: [arm] os: [linux] - '@esbuild/linux-arm@0.23.1': - resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==} - engines: {node: '>=18'} - cpu: [arm] - os: [linux] - '@esbuild/linux-arm@0.24.0': resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==} engines: {node: '>=18'} @@ -496,12 +436,6 @@ packages: cpu: [ia32] os: [linux] - '@esbuild/linux-ia32@0.23.1': - resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==} - engines: {node: '>=18'} - cpu: [ia32] - os: [linux] - '@esbuild/linux-ia32@0.24.0': resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==} engines: {node: '>=18'} @@ -514,12 +448,6 @@ packages: cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.23.1': - resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==} - engines: {node: '>=18'} - cpu: [loong64] - os: [linux] - '@esbuild/linux-loong64@0.24.0': resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==} engines: {node: '>=18'} @@ -532,12 +460,6 @@ packages: cpu: [mips64el] os: [linux] - '@esbuild/linux-mips64el@0.23.1': - resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==} - engines: {node: '>=18'} - cpu: [mips64el] - os: [linux] - '@esbuild/linux-mips64el@0.24.0': resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==} engines: {node: '>=18'} @@ -550,12 +472,6 @@ packages: cpu: [ppc64] os: [linux] - '@esbuild/linux-ppc64@0.23.1': - resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [linux] - '@esbuild/linux-ppc64@0.24.0': resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==} engines: {node: '>=18'} @@ -568,12 +484,6 @@ packages: cpu: [riscv64] os: [linux] - '@esbuild/linux-riscv64@0.23.1': - resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==} - engines: {node: '>=18'} - cpu: [riscv64] - os: [linux] - '@esbuild/linux-riscv64@0.24.0': resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==} engines: {node: '>=18'} @@ -586,12 +496,6 @@ packages: cpu: [s390x] os: [linux] - '@esbuild/linux-s390x@0.23.1': - resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==} - engines: {node: '>=18'} - cpu: [s390x] - os: [linux] - '@esbuild/linux-s390x@0.24.0': resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==} engines: {node: '>=18'} @@ -604,12 +508,6 @@ packages: cpu: [x64] os: [linux] - '@esbuild/linux-x64@0.23.1': - resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==} - engines: {node: '>=18'} - cpu: [x64] - os: [linux] - '@esbuild/linux-x64@0.24.0': resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==} engines: {node: '>=18'} @@ -622,24 +520,12 @@ packages: cpu: [x64] os: [netbsd] - '@esbuild/netbsd-x64@0.23.1': - resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==} - engines: {node: '>=18'} - cpu: [x64] - os: [netbsd] - '@esbuild/netbsd-x64@0.24.0': resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] - '@esbuild/openbsd-arm64@0.23.1': - resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==} - engines: {node: '>=18'} - cpu: [arm64] - os: [openbsd] - '@esbuild/openbsd-arm64@0.24.0': resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==} engines: {node: '>=18'} @@ -652,12 +538,6 @@ packages: cpu: [x64] os: [openbsd] - '@esbuild/openbsd-x64@0.23.1': - resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==} - engines: {node: '>=18'} - cpu: [x64] - os: [openbsd] - '@esbuild/openbsd-x64@0.24.0': resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==} engines: {node: '>=18'} @@ -670,12 +550,6 @@ packages: cpu: [x64] os: [sunos] - '@esbuild/sunos-x64@0.23.1': - resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==} - engines: {node: '>=18'} - cpu: [x64] - os: [sunos] - '@esbuild/sunos-x64@0.24.0': resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==} engines: {node: '>=18'} @@ -688,12 +562,6 @@ packages: cpu: [arm64] os: [win32] - '@esbuild/win32-arm64@0.23.1': - resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==} - engines: {node: '>=18'} - cpu: [arm64] - os: [win32] - '@esbuild/win32-arm64@0.24.0': resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==} engines: {node: '>=18'} @@ -706,12 +574,6 @@ packages: cpu: [ia32] os: [win32] - '@esbuild/win32-ia32@0.23.1': - resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==} - engines: {node: '>=18'} - cpu: [ia32] - os: [win32] - '@esbuild/win32-ia32@0.24.0': resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==} engines: {node: '>=18'} @@ -724,12 +586,6 @@ packages: cpu: [x64] os: [win32] - '@esbuild/win32-x64@0.23.1': - resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==} - engines: {node: '>=18'} - cpu: [x64] - os: [win32] - '@esbuild/win32-x64@0.24.0': resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==} engines: {node: '>=18'} @@ -1073,20 +929,20 @@ packages: resolution: {integrity: sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==} engines: {node: ^16.14.0 || >=18.0.0} - '@tsslint/cli@1.1.2': - resolution: {integrity: sha512-G7TxL8Tq3/FMj3DXm3+w7E8eeZFPTn+yvfGs/9ptXF4EL65+KzrKoZdZzD4F3BgZIMt2zq7ilzIifFe7/6/f9g==} + '@tsslint/cli@1.1.3': + resolution: {integrity: sha512-6W2ARpGowGQf0a/0nlo4dOveJ2Lg62HDVrXzofT+PRbb4LAP7McjzvOrmZA+FRfnzCrPehX+ZT1XT9RvKHYCsg==} hasBin: true peerDependencies: typescript: '*' - '@tsslint/config@1.1.2': - resolution: {integrity: sha512-vYRWU+/gGVA/07kVO6LPHZC8dpRtvrOe+L6SPKLXRc3+FVW2v/oS5uP1gqNjql1HdN45YjO2RrSSeZZEGwnuPQ==} + '@tsslint/config@1.1.3': + resolution: {integrity: sha512-ZttaRm/UAUM9G5ZRwczRx+PW81w4tG1JBIp2cAT9ad0CXLWs+H78DCd2fq3F+iXDys/pE4UB+OzLi+EIiJaYBQ==} - '@tsslint/core@1.1.2': - resolution: {integrity: sha512-ua+ewqo2MQwCiN2JeM7wV4ni8+s2UcwLKS0/urHWAt2phDjBMAOF2Z9OqCs0rT+GGvZh5APQVUiQCKtmVWVl7g==} + '@tsslint/core@1.1.3': + resolution: {integrity: sha512-bi7gVuCsdEs8HA/kT9xzNwX/xWgih5/vRV5oDDikqEsyMp7AnAd//XPangPgVe1VegtMeN9xLAwdSZJJt4zvIg==} - '@tsslint/types@1.1.2': - resolution: {integrity: sha512-LleG3hD1lhqFB040ngZXP+fDYl2gGVpkmIkLeN6g3Zcw8JUcOnPggt59qkMM4yrUqZOPVLnRts5zqOJ9e+7UIQ==} + '@tsslint/types@1.1.3': + resolution: {integrity: sha512-MNrRUtnMuP4epzV+uc4j1n+1dMIk3xe3XFfzCLIFDiNBzWzV59BSyEDOgsniewY5XTZEg6fWvccqs0wVp1hS/g==} '@tufjs/canonical-json@2.0.0': resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==} @@ -1668,11 +1524,6 @@ packages: engines: {node: '>=12'} hasBin: true - esbuild@0.23.1: - resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==} - engines: {node: '>=18'} - hasBin: true - esbuild@0.24.0: resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==} engines: {node: '>=18'} @@ -3331,213 +3182,141 @@ snapshots: '@esbuild/aix-ppc64@0.21.5': optional: true - '@esbuild/aix-ppc64@0.23.1': - optional: true - '@esbuild/aix-ppc64@0.24.0': optional: true '@esbuild/android-arm64@0.21.5': optional: true - '@esbuild/android-arm64@0.23.1': - optional: true - '@esbuild/android-arm64@0.24.0': optional: true '@esbuild/android-arm@0.21.5': optional: true - '@esbuild/android-arm@0.23.1': - optional: true - '@esbuild/android-arm@0.24.0': optional: true '@esbuild/android-x64@0.21.5': optional: true - '@esbuild/android-x64@0.23.1': - optional: true - '@esbuild/android-x64@0.24.0': optional: true '@esbuild/darwin-arm64@0.21.5': optional: true - '@esbuild/darwin-arm64@0.23.1': - optional: true - '@esbuild/darwin-arm64@0.24.0': optional: true '@esbuild/darwin-x64@0.21.5': optional: true - '@esbuild/darwin-x64@0.23.1': - optional: true - '@esbuild/darwin-x64@0.24.0': optional: true '@esbuild/freebsd-arm64@0.21.5': optional: true - '@esbuild/freebsd-arm64@0.23.1': - optional: true - '@esbuild/freebsd-arm64@0.24.0': optional: true '@esbuild/freebsd-x64@0.21.5': optional: true - '@esbuild/freebsd-x64@0.23.1': - optional: true - '@esbuild/freebsd-x64@0.24.0': optional: true '@esbuild/linux-arm64@0.21.5': optional: true - '@esbuild/linux-arm64@0.23.1': - optional: true - '@esbuild/linux-arm64@0.24.0': optional: true '@esbuild/linux-arm@0.21.5': optional: true - '@esbuild/linux-arm@0.23.1': - optional: true - '@esbuild/linux-arm@0.24.0': optional: true '@esbuild/linux-ia32@0.21.5': optional: true - '@esbuild/linux-ia32@0.23.1': - optional: true - '@esbuild/linux-ia32@0.24.0': optional: true '@esbuild/linux-loong64@0.21.5': optional: true - '@esbuild/linux-loong64@0.23.1': - optional: true - '@esbuild/linux-loong64@0.24.0': optional: true '@esbuild/linux-mips64el@0.21.5': optional: true - '@esbuild/linux-mips64el@0.23.1': - optional: true - '@esbuild/linux-mips64el@0.24.0': optional: true '@esbuild/linux-ppc64@0.21.5': optional: true - '@esbuild/linux-ppc64@0.23.1': - optional: true - '@esbuild/linux-ppc64@0.24.0': optional: true '@esbuild/linux-riscv64@0.21.5': optional: true - '@esbuild/linux-riscv64@0.23.1': - optional: true - '@esbuild/linux-riscv64@0.24.0': optional: true '@esbuild/linux-s390x@0.21.5': optional: true - '@esbuild/linux-s390x@0.23.1': - optional: true - '@esbuild/linux-s390x@0.24.0': optional: true '@esbuild/linux-x64@0.21.5': optional: true - '@esbuild/linux-x64@0.23.1': - optional: true - '@esbuild/linux-x64@0.24.0': optional: true '@esbuild/netbsd-x64@0.21.5': optional: true - '@esbuild/netbsd-x64@0.23.1': - optional: true - '@esbuild/netbsd-x64@0.24.0': optional: true - '@esbuild/openbsd-arm64@0.23.1': - optional: true - '@esbuild/openbsd-arm64@0.24.0': optional: true '@esbuild/openbsd-x64@0.21.5': optional: true - '@esbuild/openbsd-x64@0.23.1': - optional: true - '@esbuild/openbsd-x64@0.24.0': optional: true '@esbuild/sunos-x64@0.21.5': optional: true - '@esbuild/sunos-x64@0.23.1': - optional: true - '@esbuild/sunos-x64@0.24.0': optional: true '@esbuild/win32-arm64@0.21.5': optional: true - '@esbuild/win32-arm64@0.23.1': - optional: true - '@esbuild/win32-arm64@0.24.0': optional: true '@esbuild/win32-ia32@0.21.5': optional: true - '@esbuild/win32-ia32@0.23.1': - optional: true - '@esbuild/win32-ia32@0.24.0': optional: true '@esbuild/win32-x64@0.21.5': optional: true - '@esbuild/win32-x64@0.23.1': - optional: true - '@esbuild/win32-x64@0.24.0': optional: true @@ -4062,27 +3841,27 @@ snapshots: '@sigstore/core': 1.1.0 '@sigstore/protobuf-specs': 0.3.2 - '@tsslint/cli@1.1.2(typescript@5.6.3)': + '@tsslint/cli@1.1.3(typescript@5.6.3)': dependencies: '@clack/prompts': 0.7.0 - '@tsslint/config': 1.1.2 - '@tsslint/core': 1.1.2 + '@tsslint/config': 1.1.3 + '@tsslint/core': 1.1.3 glob: 10.4.5 typescript: 5.6.3 - '@tsslint/config@1.1.2': + '@tsslint/config@1.1.3': dependencies: - '@tsslint/types': 1.1.2 + '@tsslint/types': 1.1.3 - '@tsslint/core@1.1.2': + '@tsslint/core@1.1.3': dependencies: - '@tsslint/types': 1.1.2 + '@tsslint/types': 1.1.3 error-stack-parser: 2.1.4 - esbuild: 0.23.1 + esbuild: 0.24.0 minimatch: 10.0.1 source-map-support: 0.5.21 - '@tsslint/types@1.1.2': {} + '@tsslint/types@1.1.3': {} '@tufjs/canonical-json@2.0.0': {} @@ -4722,33 +4501,6 @@ snapshots: '@esbuild/win32-ia32': 0.21.5 '@esbuild/win32-x64': 0.21.5 - esbuild@0.23.1: - optionalDependencies: - '@esbuild/aix-ppc64': 0.23.1 - '@esbuild/android-arm': 0.23.1 - '@esbuild/android-arm64': 0.23.1 - '@esbuild/android-x64': 0.23.1 - '@esbuild/darwin-arm64': 0.23.1 - '@esbuild/darwin-x64': 0.23.1 - '@esbuild/freebsd-arm64': 0.23.1 - '@esbuild/freebsd-x64': 0.23.1 - '@esbuild/linux-arm': 0.23.1 - '@esbuild/linux-arm64': 0.23.1 - '@esbuild/linux-ia32': 0.23.1 - '@esbuild/linux-loong64': 0.23.1 - '@esbuild/linux-mips64el': 0.23.1 - '@esbuild/linux-ppc64': 0.23.1 - '@esbuild/linux-riscv64': 0.23.1 - '@esbuild/linux-s390x': 0.23.1 - '@esbuild/linux-x64': 0.23.1 - '@esbuild/netbsd-x64': 0.23.1 - '@esbuild/openbsd-arm64': 0.23.1 - '@esbuild/openbsd-x64': 0.23.1 - '@esbuild/sunos-x64': 0.23.1 - '@esbuild/win32-arm64': 0.23.1 - '@esbuild/win32-ia32': 0.23.1 - '@esbuild/win32-x64': 0.23.1 - esbuild@0.24.0: optionalDependencies: '@esbuild/aix-ppc64': 0.24.0