vscode-extensions.pranaygp.vscode-css-peek: init at 4.4.3 (#448099)

This commit is contained in:
Michael Daniels
2026-03-08 01:27:17 +00:00
committed by GitHub
2 changed files with 27 additions and 0 deletions
@@ -3760,6 +3760,8 @@ let
prince781.vala = callPackage ./prince781.vala { };
pranaygp.vscode-css-peek = callPackage ./pranaygp.vscode-css-peek { };
prisma.prisma = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "prisma";
@@ -0,0 +1,25 @@
{
lib,
vscode-utils,
}:
let
version = "4.4.3";
in
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
publisher = "pranaygp";
name = "vscode-css-peek";
inherit version;
hash = "sha256-oY+mpDv2OTy5hFEk2DMNHi9epFm4Ay4qi0drCXPuYhU=";
};
meta = {
description = "Allow peeking to css ID and class strings as definitions from html files to respective CSS";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=pranaygp.vscode-css-peek";
homepage = "https://github.com/pranaygp/vscode-css-peek";
changelog = "https://github.com/pranaygp/vscode-css-peek/blob/v${version}/README.md#changelog";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.kozm9000 ];
};
}