vscode-extensions.vitest.explorer: init at 1.48.2

Release: https://github.com/vitest-dev/vscode/releases/tag/v1.48.2
This commit is contained in:
Philipp Riegger
2026-03-26 13:18:20 +01:00
parent 6300dbec1e
commit 3ec22e3a58
2 changed files with 19 additions and 0 deletions
@@ -5019,6 +5019,8 @@ let
};
};
vitest.explorer = callPackage ./vitest.explorer { };
vlanguage.vscode-vlang = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vscode-vlang";
@@ -0,0 +1,17 @@
{ lib, vscode-utils }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "explorer";
publisher = "vitest";
version = "1.48.2";
hash = "sha256-EaybAznwFjeFEmVW0v9iYCfqvqUKGkjmRBx7mZxvxWw=";
};
meta = {
changelog = "https://github.com/vitest-dev/vscode/releases";
description = "Vitest extension for Visual Studio Code";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=vitest.explorer";
homepage = "https://github.com/vitest-dev/vscode";
license = lib.licenses.mit;
};
}