typescript: 5.8.3 -> 5.9.2

authored by R. Ryantm and committed by Masum Reza 674b91e8 61bc81f4

+5 -5
+2 -2
pkgs/by-name/ty/typescript/package-lock.json
··· 1 1 { 2 2 "name": "typescript", 3 - "version": "5.8.3", 3 + "version": "5.9.2", 4 4 "lockfileVersion": 3, 5 5 "requires": true, 6 6 "packages": { 7 7 "": { 8 8 "name": "typescript", 9 - "version": "5.8.3", 9 + "version": "5.9.2", 10 10 "license": "Apache-2.0", 11 11 "bin": { 12 12 "tsc": "bin/tsc",
+3 -3
pkgs/by-name/ty/typescript/package.nix
··· 14 14 15 15 buildNpmPackage (finalAttrs: { 16 16 pname = "typescript"; 17 - version = "5.8.3"; 17 + version = "5.9.2"; 18 18 19 19 # Prefer npmjs over the GitHub repository for source code. 20 20 # The TypeScript project typically publishes stable, versioned code to npmjs, ··· 24 24 # - https://github.com/microsoft/TypeScript/pull/60150#issuecomment-2648791588, 5.8.3 includes this 5.9 breaking change 25 25 src = fetchurl { 26 26 url = "https://registry.npmjs.org/typescript/-/typescript-${finalAttrs.version}.tgz"; 27 - hash = "sha256-cuddvrksLm65o0y1nXT6tcLubzKgMkqJQF9hZdWgg3Q="; 27 + hash = "sha256-Z6O8gugiuPRfZTqA/DqXMNIyFNNsg7qF3X9avr7oIGI="; 28 28 }; 29 29 30 30 # The upstream GitHub repository's package-lock.json differs from the package.json in the npmjs tarball. ··· 40 40 mkdir -p node_modules 41 41 ''; 42 42 43 - npmDepsHash = "sha256-f/7Dxwoz0qv7T3Ez4jeRvmu7PxhzObwczjO7JcEcCr4="; 43 + npmDepsHash = "sha256-dyN94wmEA/jtiJCsEs/MoDSd6AFsaq2r25a/FeuqQ5k="; 44 44 forceEmptyCache = true; 45 45 46 46 dontNpmBuild = true;