[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/09: gnu: esbuild: Update to 0.8.0.
From: |
guix-commits |
Subject: |
08/09: gnu: esbuild: Update to 0.8.0. |
Date: |
Sat, 31 Oct 2020 18:18:10 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 1e0c382605f79ccf60376918180805c742586394
Author: Ryan Prior <rprior@protonmail.com>
AuthorDate: Fri Oct 30 04:32:10 2020 +0000
gnu: esbuild: Update to 0.8.0.
* gnu/packages/web.scm (esbuild): Update to 0.8.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/web.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index b3e156b..b368678 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -1424,7 +1424,7 @@ used to validate and fix HTML data.")
(define-public esbuild
(package
(name "esbuild")
- (version "0.7.16")
+ (version "0.8.0")
(source
(origin
(method git-fetch)
@@ -1434,7 +1434,7 @@ used to validate and fix HTML data.")
(file-name (git-file-name name version))
(sha256
(base32
- "0lmq7yqssnc1cgd63m5zl734ahf8c0q0k1p2zdcn3qm15wfz7sh7"))
+ "17qzmadjixjivwbxbj20683j3n6igk7bx7v4k5bs2rqfvigdx2ps"))
(modules '((guix build utils)))
(snippet
'(begin
@@ -1449,14 +1449,14 @@ used to validate and fix HTML data.")
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? unpack-path #:allow-other-keys)
- (if tests?
+ (when tests?
(with-directory-excursion (string-append "src/" unpack-path)
(invoke "make" "test-go")))
#t)))))
(inputs
- `(("go-golang-org-x-sys" ,go-golang-org-x-sys)))
+ `(("golang.org/x/sys" ,go-golang-org-x-sys)))
(native-inputs
- `(("go-github-com-kylelemons-godebug" ,go-github-com-kylelemons-godebug)))
+ `(("github.com/kylelemons/godebug" ,go-github-com-kylelemons-godebug)))
(home-page "https://github.com/evanw/esbuild")
(synopsis "Bundler and minifier tool for JavaScript and TypeScript")
(description
- branch master updated (48dec2e -> 70876b0), guix-commits, 2020/10/31
- 02/09: guix build: Remove unnecessary (replacement #f)., guix-commits, 2020/10/31
- 01/09: guix build: 'package-with-source' no longer takes a 'store' parameter., guix-commits, 2020/10/31
- 03/09: guix build: 'options->transformation' no longer takes a 'store' parameter., guix-commits, 2020/10/31
- 06/09: doc: Add "Defining Package Variants" section., guix-commits, 2020/10/31
- 04/09: guix build: Move transformation options to (guix transformations)., guix-commits, 2020/10/31
- 05/09: transformations: Raise '&formatted-message' exceptions instead of 'leave'., guix-commits, 2020/10/31
- 09/09: gnu: httpie: Update to 2.3.0., guix-commits, 2020/10/31
- 07/09: pack: Relocatable wrapper leaves root available to child processes., guix-commits, 2020/10/31
- 08/09: gnu: esbuild: Update to 0.8.0.,
guix-commits <=