typescript: 5.3.2 -> 5.3.3
Diff: https://github.com/microsoft/TypeScript/compare/v5.3.2...v5.3.3 Changelog: https://github.com/microsoft/TypeScript/releases/tag/v5.3.3
This commit is contained in:
parent
8e9d4495c7
commit
5137849ea2
1 changed files with 10 additions and 4 deletions
|
@ -1,21 +1,27 @@
|
|||
{ lib, buildNpmPackage, fetchFromGitHub}:
|
||||
{ lib, buildNpmPackage, fetchFromGitHub, testers, typescript }:
|
||||
|
||||
buildNpmPackage rec {
|
||||
pname = "typescript";
|
||||
version = "5.3.2";
|
||||
version = "5.3.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "microsoft";
|
||||
repo = "TypeScript";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-lwc2bYC2f8x3Np/LxbN+5x6Apuekp7LmHXNutqL9Z2E=";
|
||||
hash = "sha256-gZdS4TGbafaOdNc1ZB24uAjMu9g0hef6mEsOr/dPqvY=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
./disable-dprint-dstBundler.patch
|
||||
];
|
||||
|
||||
npmDepsHash = "sha256-vD/tax5RjREdsdte3ONahVf9GPOkxPqeP9jmsxjCYkY=";
|
||||
npmDepsHash = "sha256-gj59jjko13UBPqqy/3z1KgVMFUQPUAIg47UTTaseF+w=";
|
||||
|
||||
passthru.tests = {
|
||||
version = testers.testVersion {
|
||||
package = typescript;
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A superset of JavaScript that compiles to clean JavaScript output";
|
||||
|
|
Loading…
Reference in a new issue