Skip to content

Commit 22de8ae

Browse files
committed
build: update to TypeScript 5.9
Updates the repo to TypeScript 5.9.
1 parent c386d0e commit 22de8ae

File tree

5 files changed

+515
-804
lines changed

5 files changed

+515
-804
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.1-rc | jq -r '.dist.integrity'
162+
ts_integrity = "sha512-pWar+9HGLkLwxu2PX1ItWnWg80r6nZ8qVEyWVRsnlZyZeFkHeR+eCrZ9PcYeVZjdLvcd5p/WgycViI+lsTh2qg==",
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.1-rc"
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.1-rc",
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.1-rc"
156156
},
157157
"onlyBuiltDependencies": [],
158158
"packageExtensions": {

0 commit comments

Comments
 (0)