diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/node.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm index cff2b39dd6..55bca7c006 100644 --- a/gnu/packages/node.scm +++ b/gnu/packages/node.scm @@ -567,7 +567,15 @@ Node.js and web browsers.") #:tests? #f #:phases (modify-phases %standard-phases - (delete 'configure) + (add-after 'patch-dependencies 'delete-dependencies + (lambda args + (delete-dependencies `("@types/debug" + "@types/mocha" + "@types/node" + "mocha" + "ts-node" + "tslint" + "typescript")))) (replace 'build (lambda* (#:key inputs #:allow-other-keys) (let ((esbuild (search-input-file inputs "/bin/esbuild"))) |