codebuff: 1.0.635 -> 1.0.638 (#507742)

This commit is contained in:
Gaétan Lepage
2026-04-07 22:33:47 +00:00
committed by GitHub
2 changed files with 12 additions and 10 deletions
+4 -4
View File
@@ -5,7 +5,7 @@
"packages": {
"": {
"dependencies": {
"codebuff": "^1.0.635"
"codebuff": "^1.0.638"
}
},
"node_modules/@isaacs/fs-minipass": {
@@ -30,9 +30,9 @@
}
},
"node_modules/codebuff": {
"version": "1.0.635",
"resolved": "https://registry.npmjs.org/codebuff/-/codebuff-1.0.635.tgz",
"integrity": "sha512-WjryNPaDPLKZ22vspoib6B5q9S9AIIxqJjbrB3kBj5e7vLx+BDlxMqwbvw4ywzzO/7+P62vOyJ99WFA7l86SNw==",
"version": "1.0.638",
"resolved": "https://registry.npmjs.org/codebuff/-/codebuff-1.0.638.tgz",
"integrity": "sha512-AVjN8qPQ+7gZ30Y1NpdtycatSKg/K4FPRrgAr1Lc/tYQ7kmfTKopYpPiawF2Q+v3pO9K2jFNoVihvcLzEv+ewA==",
"cpu": [
"x64",
"arm64"
+8 -6
View File
@@ -4,16 +4,18 @@
fetchzip,
}:
buildNpmPackage rec {
buildNpmPackage (finalAttrs: {
pname = "codebuff";
version = "1.0.635";
version = "1.0.638";
src = fetchzip {
url = "https://registry.npmjs.org/codebuff/-/codebuff-${version}.tgz";
hash = "sha256-IKo/00XmqRvKq3OHc3Fu0/r3fvecKB+E2syuA5jw3Cc=";
url = "https://registry.npmjs.org/codebuff/-/codebuff-${finalAttrs.version}.tgz";
hash = "sha256-Fyu2T3HGwKfECiw0zyRMH29iDAlrtpzvkoqswJiPl6Y=";
};
npmDepsHash = "sha256-u1xkAQjSeVg6M/1hyDAl0LGjUdu91O9gk95svipy7pw=";
strictDeps = true;
npmDepsHash = "sha256-Wb0FbeuzkKg3ljirUFX2ZHx1WS1K2lyuha9qWUncsiI=";
postPatch = ''
cp ${./package-lock.json} package-lock.json
@@ -31,4 +33,4 @@ buildNpmPackage rec {
maintainers = [ lib.maintainers.malo ];
mainProgram = "codebuff";
};
}
})