v1.0.0-rc5
Pre-release
Pre-release
·
445 commits
to main
since this release
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_ts",
sha256 = "1149d4cf7f210de67e0fc5cd3e8f624de3ee976ac05af4f1484e57a74c12f2dc",
strip_prefix = "rules_ts-1.0.0-rc5",
url = "https://github.com/aspect-build/rules_ts/archive/refs/tags/v1.0.0-rc5.tar.gz",
)
##################
# rules_ts setup #
##################
# Fetches the rules_ts dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've
# already fetched all the dependencies.
load("@aspect_rules_ts//ts:repositories.bzl", "LATEST_VERSION", "rules_ts_dependencies")
rules_ts_dependencies(ts_version = LATEST_VERSION)
# Fetch and register node, if you haven't already
load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains")
nodejs_register_toolchains(
name = "node",
node_version = DEFAULT_NODE_VERSION,
)What's Changed
- fix: prevent worker from running oom by @thesayyn in #182
- fix: prefix host call by @thesayyn in #184
- fix: remove unused validate_options(has_local_deps) by @jbedard in #200
- fix: .tsbuildinfo is not written in subsequent builds by @thesayyn in #187
- chore: account for github actions deprecation by @alexeagle in #201
- fix(ts_lib): omit "." segments in path joining by @alexeagle in #205
- fix(docs): introduce tsc_test example by @alexeagle in #207
- chore: rename declaration_only example by @alexeagle in #208
- feat: add ts_project(deps) validation ensuring all deps of declarations by @jbedard in #199
- docs: rename json example to match TS compiler option by @alexeagle in #210
- docs: cleanup declaration_dir example by @alexeagle in #209
- test: add case for filegroup of srcs by @alexeagle in #211
- docs: show example of different module outputs by @alexeagle in #212
- docs: add custom compiler example by @alexeagle in #213
- docs: add root_dir example by @alexeagle in #214
- docs: improve readability: extract transpiler/tsconfig to standalone by @alexeagle in #215
- chore: fixes to doc presentation by @alexeagle in #216
- chore: update to Bazel 6.0.0rc1 by @gregmagolan in #217
- fix: fix bzlmod with Bazel 6.0.0rc1 and enable e2e/bzlmod on CI by @alexeagle in #197
- chore: cleanup maybe pattern by @gregmagolan in #218
- fix: support --experimental_allow_unresolved_symlinks flag by @thesayyn in #202
Full Changelog: v1.0.0-rc4...v1.0.0-rc5