Merge pull request #237050 from undefined-moe/esbuild-1_18_0

esbuild: update to 0.18.0
This commit is contained in:
Mario Rodas 2023-06-11 18:13:31 -05:00 committed by GitHub
commit 98f7cdae12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 3 deletions

View file

@ -16537,6 +16537,15 @@
fingerprint = "EE59 5E29 BB5B F2B3 5ED2 3F1C D276 FF74 6700 7335";
}];
};
undefined-moe = {
name = "undefined";
email = "i@undefined.moe";
github = "undefined-moe";
githubId = 29992205;
keys = [{
fingerprint = "6684 4E7D D213 C75D 8828 6215 C714 A58B 6C1E 0F52";
}];
};
unhammer = {
email = "unhammer@fsfe.org";
github = "unhammer";

View file

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "esbuild";
version = "0.17.19";
version = "0.18.0";
src = fetchFromGitHub {
owner = "evanw";
repo = "esbuild";
rev = "v${version}";
hash = "sha256-PLC7OJLSOiDq4OjvrdfCawZPfbfuZix4Waopzrj8qsU=";
hash = "sha256-3tZbYLYuT1F/OumxlpcXmGTyBPCeK21Le35zxLGbQuw=";
};
vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ=";
@ -22,6 +22,6 @@ buildGoModule rec {
homepage = "https://esbuild.github.io";
changelog = "https://github.com/evanw/esbuild/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ lucus16 marsam ];
maintainers = with maintainers; [ lucus16 marsam undefined-moe ];
};
}