Merge pull request #179091 from r-ryantm/auto-update/esbuild

esbuild: 0.14.39 -> 0.14.47
This commit is contained in:
Mario Rodas 2022-06-25 18:05:26 -05:00 committed by GitHub
commit 2c685da11e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,21 +2,23 @@
buildGoModule rec {
pname = "esbuild";
version = "0.14.39";
version = "0.14.47";
src = fetchFromGitHub {
owner = "evanw";
repo = "esbuild";
rev = "v${version}";
sha256 = "sha256-li8uVs7SZ3KX0AbzyTDUesiqm8dQecrzyLjYKnQncj8=";
sha256 = "sha256-4T+kH8aDIN18lGkduHUTg+kXjU3JZRvmzXsT2gVNar4=";
};
vendorSha256 = "sha256-QPkBR+FscUc3jOvH7olcGUhM6OW4vxawmNJuRQxPuGs=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "An extremely fast JavaScript bundler";
homepage = "https://esbuild.github.io";
license = licenses.mit;
maintainers = with maintainers; [ lucus16 ];
maintainers = with maintainers; [ lucus16 marsam ];
};
}