diff options
author | Philip McGrath <philip@philipmcgrath.com> | 2022-01-08 03:41:55 -0500 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-01-09 02:07:12 +0100 |
commit | 11f842fafe5364e018b5b6996790e789ea62c016 (patch) | |
tree | 445bf32e88efdbfc8fdcef2e6d264c37cb5b6e32 /gnu/packages/node.scm | |
parent | ef511a3b489c0527105948da503dc8e94a5c48eb (diff) |
gnu: node-ms-bootstrap: Use 'delete-dependencies'.
gnu/packages/node.scm (node-ms-bootstrap)[arguments]: Use
'delete-dependencies'. Stop deleting the 'configure' phase.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages/node.scm')
-rw-r--r-- | gnu/packages/node.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm index fb21054fe7..495ae95dc3 100644 --- a/gnu/packages/node.scm +++ b/gnu/packages/node.scm @@ -377,7 +377,13 @@ devices.") #:tests? #f #:phases (modify-phases %standard-phases - (delete 'configure)))) + (add-after 'patch-dependencies 'delete-dependencies + (lambda args + (delete-dependencies '("eslint" + "expect.js" + "husky" + "lint-staged" + "mocha"))))))) (home-page "https://github.com/zeit/ms#readme") (properties '((hidden? . #t))) (synopsis "Tiny millisecond conversion utility") |