Skip to content

Commit d06d969

Browse files
authored
build: update to TypeScript 5.9 (#31604)
Updates the repo to TypeScript 5.9.
1 parent 84aea87 commit d06d969

File tree

103 files changed

+831
-1204
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+831
-1204
lines changed

WORKSPACE

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ http_archive(
158158
load("@aspect_rules_ts//ts:repositories.bzl", "rules_ts_dependencies")
159159

160160
rules_ts_dependencies(
161-
# Obtained by: curl --silent https://registry.npmjs.org/typescript/5.8.3 | jq -r '.dist.integrity'
162-
ts_integrity = "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
161+
# Obtained by: curl --silent https://registry.npmjs.org/typescript/5.9.2 | jq -r '.dist.integrity'
162+
ts_integrity = "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==",
163163
ts_version_from = "//:package.json",
164164
)
165165

@@ -177,6 +177,13 @@ http_archive(
177177
url = "https://github.com/aspect-build/rules_jasmine/releases/download/v2.0.0/rules_jasmine-v2.0.0.tar.gz",
178178
)
179179

180+
http_archive(
181+
name = "jq.bzl",
182+
sha256 = "7b63435aa19cc6a0cfd1a82fbdf2c7a2f0a94db1a79ff7a4469ffa94286261ab",
183+
strip_prefix = "jq.bzl-0.1.0",
184+
url = "https://github.com/bazel-contrib/jq.bzl/releases/download/v0.1.0/jq.bzl-v0.1.0.tar.gz",
185+
)
186+
180187
load("@aspect_rules_jasmine//jasmine:dependencies.bzl", "rules_jasmine_dependencies")
181188

182189
rules_jasmine_dependencies()
@@ -199,7 +206,7 @@ setup_dependencies_2()
199206

200207
git_repository(
201208
name = "rules_angular",
202-
commit = "652e5b0ef9be65ca738e11d5d01424b64344b466",
209+
commit = "8bf9ae3fa3017ec12877908533001daed9c6ce83",
203210
remote = "https://github.com/devversion/rules_angular.git",
204211
)
205212

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@
7979
"sass": "1.89.2",
8080
"shelljs": "^0.10.0",
8181
"ts-node": "10.9.2",
82-
"typescript": "~5.8.2"
82+
"typescript": "~5.9.2"
8383
}
8484
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,14 +145,14 @@
145145
"tsickle": "0.46.3",
146146
"tslint": "^6.1.3",
147147
"tsutils": "^3.21.0",
148-
"typescript": "5.8.3",
148+
"typescript": "5.9.2",
149149
"vrsource-tslint-rules": "6.0.0",
150150
"yargs": "^18.0.0",
151151
"zx": "^8.0.0"
152152
},
153153
"pnpm": {
154154
"overrides": {
155-
"typescript": "5.8.3"
155+
"typescript": "5.9.2"
156156
},
157157
"onlyBuiltDependencies": [],
158158
"packageExtensions": {

pnpm-lock.yaml

Lines changed: 686 additions & 1084 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,22 @@ packages:
1717
- src/youtube-player
1818

1919
catalog:
20-
'@angular-devkit/build-angular': 20.2.0-next.0
21-
'@angular-devkit/core': 20.2.0-next.0
22-
'@angular-devkit/schematics': 20.2.0-next.0
23-
'@angular/animations': 20.2.0-next.1
24-
'@angular/build': 20.2.0-next.0
25-
'@angular/cli': 20.2.0-next.0
26-
'@angular/common': 20.2.0-next.1
27-
'@angular/compiler-cli': 20.2.0-next.1
28-
'@angular/compiler': 20.2.0-next.1
29-
'@angular/core': 20.2.0-next.1
30-
'@angular/ssr': 20.2.0-next.0
31-
'@angular/forms': 20.2.0-next.1
32-
'@angular/localize': 20.2.0-next.1
33-
'@angular/platform-browser': 20.2.0-next.1
34-
'@angular/platform-browser-dynamic': 20.2.0-next.1
35-
'@angular/platform-server': 20.2.0-next.1
36-
'@angular/router': 20.2.0-next.1
37-
'@schematics/angular': 20.2.0-next.0
20+
'@angular-devkit/build-angular': 20.2.0-next.1
21+
'@angular-devkit/core': 20.2.0-next.1
22+
'@angular-devkit/schematics': 20.2.0-next.1
23+
'@angular/animations': 20.2.0-next.2
24+
'@angular/build': 20.2.0-next.1
25+
'@angular/cli': 20.2.0-next.1
26+
'@angular/common': 20.2.0-next.2
27+
'@angular/compiler-cli': 20.2.0-next.2
28+
'@angular/compiler': 20.2.0-next.2
29+
'@angular/core': 20.2.0-next.2
30+
'@angular/ssr': 20.2.0-next.1
31+
'@angular/forms': 20.2.0-next.2
32+
'@angular/localize': 20.2.0-next.2
33+
'@angular/platform-browser': 20.2.0-next.2
34+
'@angular/platform-browser-dynamic': 20.2.0-next.2
35+
'@angular/platform-server': 20.2.0-next.2
36+
'@angular/router': 20.2.0-next.2
37+
'@schematics/angular': 20.2.0-next.1
3838
'rxjs': ^6.6.7

src/cdk-experimental/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
load("@npm//:defs.bzl", "npm_link_all_packages")
12
load("//src/cdk-experimental:config.bzl", "CDK_EXPERIMENTAL_TARGETS")
23
load("//tools:defaults.bzl", "ng_package", "ts_project")
3-
load("@npm//:defs.bzl", "npm_link_all_packages")
44

55
package(default_visibility = ["//visibility:public"])
66

src/cdk/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
load("@aspect_bazel_lib//lib:copy_to_directory.bzl", "copy_to_directory")
2+
load("@npm//:defs.bzl", "npm_link_all_packages")
13
load("//src/cdk:config.bzl", "CDK_ENTRYPOINTS", "CDK_ENTRYPOINTS_WITH_STYLES", "CDK_SCSS_LIBS", "CDK_TARGETS")
24
load("//tools:defaults.bzl", "ng_package", "sass_library", "ts_project")
3-
load("@npm//:defs.bzl", "npm_link_all_packages")
4-
load("@aspect_bazel_lib//lib:copy_to_directory.bzl", "copy_to_directory")
55

66
package(default_visibility = ["//visibility:public"])
77

src/components-examples/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
load("@npm//:defs.bzl", "npm_link_all_packages")
12
load("//tools:defaults.bzl", "ng_package", "ng_project")
23
load("//tools/highlight-files:index.bzl", "highlight_files")
34
load("//tools/package-docs-content:index.bzl", "package_docs_content")
45
load(":config.bzl", "ALL_EXAMPLES")
5-
load("@npm//:defs.bzl", "npm_link_all_packages")
66

77
package(default_visibility = ["//visibility:public"])
88

src/google-maps/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
load("//tools:defaults.bzl", "ng_package", "ng_project", "ng_web_test_suite", "ts_project")
21
load("@aspect_rules_ts//ts:defs.bzl", rules_js_tsconfig = "ts_config")
2+
load("//tools:defaults.bzl", "ng_package", "ng_project", "ng_web_test_suite", "ts_project")
33

44
package(default_visibility = ["//visibility:public"])
55

src/material-experimental/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1+
load("@npm//:defs.bzl", "npm_link_all_packages")
12
load(
23
"//src/material-experimental:config.bzl",
34
"MATERIAL_EXPERIMENTAL_SCSS_LIBS",
45
"MATERIAL_EXPERIMENTAL_TARGETS",
56
"MATERIAL_EXPERIMENTAL_TESTING_TARGETS",
67
)
78
load("//tools:defaults.bzl", "ng_package", "sass_library", "ts_project")
8-
load("@npm//:defs.bzl", "npm_link_all_packages")
99

1010
package(default_visibility = ["//visibility:public"])
1111

0 commit comments

Comments
 (0)