summaryrefslogtreecommitdiff
path: root/gnu/packages/node-xyz.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/node-xyz.scm')
-rw-r--r--gnu/packages/node-xyz.scm58
1 files changed, 32 insertions, 26 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index bdcb54f48ae..4e92480ea2a 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -60,6 +60,7 @@
60 ((guix build node-build-system) 60 ((guix build node-build-system)
61 (srfi srfi-1) 61 (srfi srfi-1)
62 (ice-9 match) 62 (ice-9 match)
63 (guix build json-utils)
63 (guix build utils)) 64 (guix build utils))
64 #:phases 65 #:phases
65 (modify-phases %standard-phases 66 (modify-phases %standard-phases
@@ -123,6 +124,7 @@ architecture supporting plugins.")
123 ((guix build node-build-system) 124 ((guix build node-build-system)
124 (srfi srfi-1) 125 (srfi srfi-1)
125 (ice-9 match) 126 (ice-9 match)
127 (guix build json-utils)
126 (guix build utils)) 128 (guix build utils))
127 #:phases 129 #:phases
128 (modify-phases %standard-phases 130 (modify-phases %standard-phases
@@ -1255,10 +1257,10 @@ It can handle big files (tested up to 100mb). XML Entities, HTML entities, and D
1255 ; Use ESBuild because this package is used to build Typescript. 1257 ; Use ESBuild because this package is used to build Typescript.
1256 (native-inputs (list esbuild)) 1258 (native-inputs (list esbuild))
1257 (arguments (list 1259 (arguments (list
1258 #:modules '( 1260 #:modules '((guix build node-build-system)
1259 (guix build node-build-system) 1261 (guix build json-utils)
1260 (guix build utils) 1262 (guix build utils)
1261 (ice-9 match)) 1263 (ice-9 match))
1262 #:tests? #f ; FIXME: Tests require 'jest'. 1264 #:tests? #f ; FIXME: Tests require 'jest'.
1263 #:phases 1265 #:phases
1264 #~(modify-phases %standard-phases 1266 #~(modify-phases %standard-phases
@@ -1389,11 +1391,12 @@ suitable for use with the @code{fs} module functions.")
1389 node-path-scurry)) 1391 node-path-scurry))
1390 ; Use ESBuild instead of tshy because this is used to build Typescript. 1392 ; Use ESBuild instead of tshy because this is used to build Typescript.
1391 (native-inputs (list esbuild)) 1393 (native-inputs (list esbuild))
1392 (arguments (list 1394 (arguments
1393 #:modules '( 1395 (list
1394 (guix build node-build-system) 1396 #:modules '((guix build node-build-system)
1395 (guix build utils) 1397 (guix build json-utils)
1396 (ice-9 match)) 1398 (guix build utils)
1399 (ice-9 match))
1397 #:tests? #f ; FIXME: Tests require 'c8' and 'tap'. 1400 #:tests? #f ; FIXME: Tests require 'c8' and 'tap'.
1398 #:phases 1401 #:phases
1399 #~(modify-phases %standard-phases 1402 #~(modify-phases %standard-phases
@@ -2059,10 +2062,10 @@ user-land JavaScript.")
2059 ; Use ESBuild instead of tshy because this is used to build Typescript. 2062 ; Use ESBuild instead of tshy because this is used to build Typescript.
2060 (native-inputs (list esbuild)) 2063 (native-inputs (list esbuild))
2061 (arguments (list 2064 (arguments (list
2062 #:modules '( 2065 #:modules '((guix build node-build-system)
2063 (guix build node-build-system) 2066 (guix build json-utils)
2064 (guix build utils) 2067 (guix build utils)
2065 (ice-9 match)) 2068 (ice-9 match))
2066 #:tests? #f ; FIXME: Tests require 'tap'. 2069 #:tests? #f ; FIXME: Tests require 'tap'.
2067 #:phases #~(modify-phases %standard-phases 2070 #:phases #~(modify-phases %standard-phases
2068 (add-before 'patch-dependencies 'delete-dependencies 2071 (add-before 'patch-dependencies 'delete-dependencies
@@ -2207,10 +2210,10 @@ JavaScript.")
2207 ; Use ESBuild because this is used to build Typescript. 2210 ; Use ESBuild because this is used to build Typescript.
2208 (native-inputs (list esbuild)) 2211 (native-inputs (list esbuild))
2209 (arguments (list 2212 (arguments (list
2210 #:modules '( 2213 #:modules '((guix build node-build-system)
2211 (guix build node-build-system) 2214 (guix build json-utils)
2212 (guix build utils) 2215 (guix build utils)
2213 (ice-9 match)) 2216 (ice-9 match))
2214 #:tests? #f ; FIXME: Tests require 'tap'. 2217 #:tests? #f ; FIXME: Tests require 'tap'.
2215 #:phases #~(modify-phases %standard-phases 2218 #:phases #~(modify-phases %standard-phases
2216 (add-before 'patch-dependencies 'modify-package 2219 (add-before 'patch-dependencies 'modify-package
@@ -2346,6 +2349,7 @@ This is not a through or through2 stream. It doesn't transform the data, it just
2346 (list 2349 (list
2347 #:tests? #f ; FIXME: Tests require 'tap'. 2350 #:tests? #f ; FIXME: Tests require 'tap'.
2348 #:modules '((guix build node-build-system) 2351 #:modules '((guix build node-build-system)
2352 (guix build json-utils)
2349 (guix build utils) 2353 (guix build utils)
2350 (ice-9 match) 2354 (ice-9 match)
2351 (srfi srfi-26)) 2355 (srfi srfi-26))
@@ -2681,10 +2685,10 @@ particular cross-platform spellings of the PATH environment variable key.")
2681 ; Use ESBuild because this is used to build Typescript. 2685 ; Use ESBuild because this is used to build Typescript.
2682 (native-inputs (list esbuild)) 2686 (native-inputs (list esbuild))
2683 (arguments (list 2687 (arguments (list
2684 #:modules '( 2688 #:modules '((guix build node-build-system)
2685 (guix build node-build-system) 2689 (guix build json-utils)
2686 (guix build utils) 2690 (guix build utils)
2687 (ice-9 match)) 2691 (ice-9 match))
2688 #:tests? #f ; FIXME: Tests require 'tap'. 2692 #:tests? #f ; FIXME: Tests require 'tap'.
2689 #:phases #~(modify-phases %standard-phases 2693 #:phases #~(modify-phases %standard-phases
2690 (add-before 'patch-dependencies 'delete-dependencies 2694 (add-before 'patch-dependencies 'delete-dependencies
@@ -3556,6 +3560,7 @@ it to make a new binding for a different platform or underling technology.")))
3556 ((guix build node-build-system) 3560 ((guix build node-build-system)
3557 (srfi srfi-1) 3561 (srfi srfi-1)
3558 (ice-9 match) 3562 (ice-9 match)
3563 (guix build json-utils)
3559 (guix build utils)) 3564 (guix build utils))
3560 #:phases 3565 #:phases
3561 (modify-phases %standard-phases 3566 (modify-phases %standard-phases
@@ -3787,11 +3792,11 @@ connection.")))
3787 (build-system node-build-system) 3792 (build-system node-build-system)
3788 (native-inputs (list esbuild)) 3793 (native-inputs (list esbuild))
3789 (arguments (list 3794 (arguments (list
3790 #:modules '( 3795 #:modules '((guix build node-build-system)
3791 (guix build node-build-system) 3796 (guix build json-utils)
3792 (guix build utils) 3797 (guix build utils)
3793 (ice-9 match) 3798 (ice-9 match)
3794 (json)) 3799 (json))
3795 #:phases #~(modify-phases %standard-phases 3800 #:phases #~(modify-phases %standard-phases
3796 (add-before 'patch-dependencies 'modify-package (lambda _ 3801 (add-before 'patch-dependencies 'modify-package (lambda _
3797 (modify-json 3802 (modify-json
@@ -3888,6 +3893,7 @@ connection.")))
3888 ((guix build node-build-system) 3893 ((guix build node-build-system)
3889 (srfi srfi-1) 3894 (srfi srfi-1)
3890 (ice-9 match) 3895 (ice-9 match)
3896 (guix build json-utils)
3891 (guix build utils)) 3897 (guix build utils))
3892 #:tests? #f ; FIXME: tests depend on node-mocha 3898 #:tests? #f ; FIXME: tests depend on node-mocha
3893 #:phases 3899 #:phases