diff options
author | Jelle Licht <jlicht@fsfe.org> | 2025-05-30 16:21:34 +0200 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2025-10-13 09:55:14 +0200 |
commit | a2c6832d0ba1978dbdfd394a87606de4bb29d5bf (patch) | |
tree | dee00cf9b9ad206218ed4404b2b517e4a46e26ad | |
parent | 4182d5f30c889c83995d76899b5449f6db989c28 (diff) |
gnu: node-llparse-bootstrap: Update to 7.3.0.
* gnu/packages/node.scm (node-llparse-bootstrap): Update to 7.3.0.
Change-Id: I1a84ea216933bf4ce12c12782d57fef5b4891f4c
-rw-r--r-- | gnu/packages/node.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm index 813482e5fb..550442abae 100644 --- a/gnu/packages/node.scm +++ b/gnu/packages/node.scm @@ -608,17 +608,17 @@ Node.js and web browsers.") (define-public node-llparse-bootstrap (package (name "node-llparse") - (version "7.1.0") + (version "7.3.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/indutny/llparse.git") + (url "https://github.com/nodejs/llparse.git") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "10da273iy2if88hp79cwms6c8qpsl1fkgzll6gmqyx5yxv5mkyp6")) + "09hqjcynkz5iv7aydzdwgs42r7y2zylplv0ff7w0vkdsgb08j22a")) (modules '((guix build utils))) (snippet '(begin @@ -642,10 +642,14 @@ Node.js and web browsers.") (add-after 'patch-dependencies 'delete-dependencies (lambda args (modify-json (delete-dependencies - `("@types/debug" + `("@stylistic/eslint-plugin" + "@typescript-eslint/eslint-plugin" + "@typescript-eslint/parser" + "@types/debug" "@types/mocha" "@types/node" "esm" + "eslint" "llparse-test-fixture" "mocha" "ts-node" |